summaryrefslogtreecommitdiff
path: root/pywal/settings.py
diff options
context:
space:
mode:
authorDylan Araps <dylan.araps@gmail.com>2017-07-30 22:16:41 +1000
committerDylan Araps <dylan.araps@gmail.com>2017-07-30 22:16:41 +1000
commitca63452eb14a4e8211ea578061973600e6b4242d (patch)
treea382eebe6e617cf9dfecee713af3e5c84decc159 /pywal/settings.py
parentddcd56828980c2ae42c19c99cbc6d974abf7f7b3 (diff)
sequences: Send colors 0-15
Diffstat (limited to 'pywal/settings.py')
-rw-r--r--pywal/settings.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/pywal/settings.py b/pywal/settings.py
index 812c050..a58930a 100644
--- a/pywal/settings.py
+++ b/pywal/settings.py
@@ -10,6 +10,7 @@ Created by Dylan Araps.
"""
import pathlib
+import platform
__version__ = "0.5.7"
@@ -19,3 +20,4 @@ HOME = pathlib.Path.home()
CACHE_DIR = HOME / ".cache/wal/"
MODULE_DIR = pathlib.Path(__file__).parent
COLOR_COUNT = 16
+OS = platform.uname()[0]