diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2017-06-26 12:09:35 +1000 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2017-06-26 12:09:35 +1000 |
| commit | 583a0c19ad2f67a54130a219eeeaccf53ea08ded (patch) | |
| tree | a72b51a6cf219c46c55f8fe9033814c48d23d48b /pywal/settings.py | |
| parent | d17282cdc01a41cc70e0919ace55715eac3dd6d1 (diff) | |
General: Split wal into multiple files.
Diffstat (limited to 'pywal/settings.py')
| -rw-r--r-- | pywal/settings.py | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/pywal/settings.py b/pywal/settings.py new file mode 100644 index 0000000..387178b --- /dev/null +++ b/pywal/settings.py @@ -0,0 +1,33 @@ +""" +Global variables and classes. +""" +import pathlib + + +__version__ = "0.1.6" + + +# Internal variables. +COLOR_COUNT = 16 +CACHE_DIR = pathlib.Path.home() / ".cache/wal/" + + +# pylint: disable=too-few-public-methods +class ColorType(object): + """Store colors in various formats.""" + plain = [] + xrdb = [] + sequences = [] + shell = [] + scss = [] + css = [":root {"] + putty = [ + "Windows Registry Editor Version 5.00", + "[HKEY_CURRENT_USER\\Software\\SimonTatham\\PuTTY\\Sessions\\Wal]", + ] + + +# pylint: disable=too-few-public-methods +class Args(object): + """Store args.""" + notify = True |
