diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2017-07-24 22:29:20 +1000 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2017-07-24 22:29:20 +1000 |
| commit | b9bf74f89b1d10d8f8e54863bf5442d612c85fdd (patch) | |
| tree | f52225414b33ad7b33f17f090faf5954a9b8ab7a /pywal/settings.py | |
| parent | 4fecce6e9c326970a73f8f3a599be8a02aeea381 (diff) | |
general: Rename constants
Diffstat (limited to 'pywal/settings.py')
| -rw-r--r-- | pywal/settings.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/pywal/settings.py b/pywal/settings.py index 431d8b0..626f83a 100644 --- a/pywal/settings.py +++ b/pywal/settings.py @@ -11,6 +11,11 @@ Created by Dylan Araps. import pathlib + __version__ = "0.5.0" -__cache_dir__ = pathlib.Path.home() / ".cache/wal/" -__color_count__ = 16 + + +HOME = pathlib.Path.home() +CACHE_DIR = HOME / ".cache/wal/" +MODULE_DIR = pathlib.Path(__file__).parent +COLOR_COUNT = 16 |
