diff options
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 |
