summaryrefslogtreecommitdiff
path: root/pywal/settings.py
diff options
context:
space:
mode:
authorDylan Araps <dylanaraps@users.noreply.github.com>2017-06-27 01:04:31 +1000
committerGitHub <noreply@github.com>2017-06-27 01:04:31 +1000
commit5c7c84601b74b5f00759baf79dcf72ae6f71b604 (patch)
tree79716fb61afb806e20913dd18f66ed42be6f3507 /pywal/settings.py
parent7f321568b273f1490a73354ce846b2536dd6d12b (diff)
parent94661b371657d6c3d1330ce1bc33180f679b3b91 (diff)
Merge pull request #8 from dylanaraps/split
General: Split wal into multiple files.
Diffstat (limited to 'pywal/settings.py')
-rwxr-xr-xpywal/settings.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/pywal/settings.py b/pywal/settings.py
new file mode 100755
index 0000000..8758a98
--- /dev/null
+++ b/pywal/settings.py
@@ -0,0 +1,12 @@
+"""
+Global Constants.
+"""
+import pathlib
+
+
+__version__ = "0.2.0"
+
+
+# Internal variables.
+COLOR_COUNT = 16
+CACHE_DIR = pathlib.Path.home() / ".cache/wal/"