summaryrefslogtreecommitdiff
path: root/pywal/settings.py
diff options
context:
space:
mode:
Diffstat (limited to 'pywal/settings.py')
-rw-r--r--pywal/settings.py9
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