diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2017-07-30 22:16:41 +1000 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2017-07-30 22:16:41 +1000 |
| commit | ca63452eb14a4e8211ea578061973600e6b4242d (patch) | |
| tree | a382eebe6e617cf9dfecee713af3e5c84decc159 /pywal/settings.py | |
| parent | ddcd56828980c2ae42c19c99cbc6d974abf7f7b3 (diff) | |
sequences: Send colors 0-15
Diffstat (limited to 'pywal/settings.py')
| -rw-r--r-- | pywal/settings.py | 2 |
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] |
