From 583a0c19ad2f67a54130a219eeeaccf53ea08ded Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Mon, 26 Jun 2017 12:09:35 +1000 Subject: General: Split wal into multiple files. --- pywal/settings.py | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 pywal/settings.py (limited to 'pywal/settings.py') 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 -- cgit v1.2.3