A base 24 builder written in Python
Project description
base24-builder-python
A base 24 builder written in Python
Thank you to https://github.com/InspectorMustache/base16-builder-python (MIT) for the original base16-builder
Installation
As this project uses async/await syntax, the lowest supported Python version is 3.5.
Install With PIP
pip install base24builder
Head to https://pypi.org/project/base24builder/ for more info
Download
Clone
Using The Command Line
- Press the Clone or download button in the top right
- Copy the URL (link)
- Open the command line and change directory to where you wish to clone to
- Type 'git clone' followed by URL in step 2
$ git clone https://github.com/Base24/base24-builder-python
More information can be found at https://help.github.com/en/articles/cloning-a-repository
Using GitHub Desktop
- Press the Clone or download button in the top right
- Click open in desktop
- Choose the path for where you want and click Clone
More information can be found at https://help.github.com/en/desktop/contributing-to-projects/cloning-a-repository-from-github-to-github-desktop
Download Zip File
- Download this GitHub repository
- Extract the zip archive
- Copy/ move to the desired location
If you don't want to clutter your computer with something that you're just going to use once you can also just clone this repository and use the provided base24.py file.
Usage
There are three modes of operation:
./base24.py update
./base24.py build
./base24.py inject
Basic Usage
If you just want to build all base24 colorschemes and then pick out the ones you need, simply run:
./base24.py update
./base24.py build
Once the process is finished, you can find all colorschemes in a folder named output located in the current working directory.
For a more detailed explanation of the individual commands, read on.
Update
Downloads all base24 schemes and templates to the current working directory. The source files, i.e. the files pointing to the scheme and template repositories
will also be updated by default. If you want to use your own versions of these
files (to exclude specific repositories, for example), you can prevent the builder
from updating the source files by using the -c/--custom
option.
You can use -v/--verbose
for more detailed output.
Build
Builds base24 colorschemes for all schemes and templates. This requires the directory structure and files created by the update operation to be present in the working directory. This operation accepts four parameters:
-
-s/--scheme
restricts building to specific schemesCan be specified more than once. Each argument must match a scheme. Wildcards can be used but must be escaped properly so they are not expanded by the shell.
-
-t/--template
restricts building to specific templatesCan be specified more than once. Each argument must correspond to a folder name in the templates directory.
-
-o/--output
specifies a path where built colorschemes will be placedIf this option is not specified, an "output" folder in the current working directory will be created and used.
-
-v/--verbose
increases verbosityWith this option specified the builder prints out the name of each scheme as it's built.
Example:
./base24.py build -t dunst -s atelier-heath-light -o /tmp/output
Inject
This operation provides an easier way to quickly insert a specific colorscheme into one or more config files. In order for the builder to locate the necessary files, this command relies on the folder structure created by the update command. The command accepts two parameters:
-
-s/--scheme
specifies the scheme you wish to injectRefers to the scheme that should be inserted. You can use wildcards and the same restrictions as with update apply. A pattern that matches more than one scheme will cause an error.
-
-f/--file
specifies the file(s) into which you wish the scheme to be insertedCan be specified more than once. Each argument must be specified as a path to a config file that features proper injection markers (see below).
You will need to prepare your configuration files so that the script knows where to insert the colorscheme. This is done by including two lines in the file
# %%base24_template: TEMPLATE_NAME##SUBTEMPLATE_NAME %%
Everything in-between these two lines will be replaced with the colorscheme.
# %%base24_template_end%%
Both lines can feature arbitrary characters before the first two percentage signs. This is so as to accomodate different commenting styles. Both lines need to end exactly as demonstrated above, however. "TEMPLATE_NAME" and "SUBTEMPLATE_NAME" are the exception to this. Replace TEMPLATE_NAME with the name of the template you wish to insert, for example "gnome-terminal". This must correspond to a folder in the templates directory. Replace SUBTEMPLATE_NAME with the name of the subtemplate as it is defined at the top level of the template's config.yaml file (see file.md <https://github.com/chriskempson/base16/blob/master/file.md>
_ for details), for example "default-256". If you omit the subtemplate name (don't omit "##" though), "default" is assumed.
Specify the name of the scheme you wish to inject with the -s option. Use the -f option for each file into which you want to inject the scheme.
As an example, here's the command I use to globally change the color scheme in all applications that support it:
./base24.py inject -s ocean -f ~/.gtkrc-2.0.mine -f ~/.config/dunst/dunstrc -f ~/.config/i3/config -f ~/.config/termite/config -f ~/.config/zathura/zathurarc
Exit
The program exits with exit code 1 if it encountered a general error and with 2 if one or more build or update tasks produced a warning or an error.
Language information
Built for
This program has been written for Python 3 and has been tested with Python version 3.8.0 https://www.python.org/downloads/release/python-380/.
Install Python on Windows
Chocolatey
choco install python
Download
To install Python, go to https://www.python.org/ and download the latest version.
Install Python on Linux
Apt
sudo apt install python3.8
How to run
With VSCode
- Open the .py file in vscode
- Ensure a python 3.8 interpreter is selected (Ctrl+Shift+P > Python:Select Interpreter > Python 3.8)
- Run by pressing Ctrl+F5 (if you are prompted to install any modules, accept)
From the Terminal
./[file].py
Changelog
See the CHANGELOG for more information.
Licence
MIT License (See the LICENSE for more information.)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file base24builder-2020.tar.gz
.
File metadata
- Download URL: base24builder-2020.tar.gz
- Upload date:
- Size: 14.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a697cf753b7aef966e7b75d4c8a3647ebb87fd9c9de87c05c5205e99b125a8b2 |
|
MD5 | d9a71c8e6f9ee51d094efc782f3737f4 |
|
BLAKE2b-256 | 0e0d59776f105d74e1dbd6e02e7cd030d625d7aec1347d26bf98bfe0a4b3a4b8 |
File details
Details for the file base24builder-2020-py3-none-any.whl
.
File metadata
- Download URL: base24builder-2020-py3-none-any.whl
- Upload date:
- Size: 13.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c3e5c3a50b13c067db2643077a96b5c44eead79138e6d92b6b072b17d52be586 |
|
MD5 | e571fe2d17e157614b771d1ee613392b |
|
BLAKE2b-256 | bad8ea923c89d4c235b2ee9f29e231eb44b2d68516886f634e19e0bd123fcdde |