diff options
| author | Dylan Araps <dylanaraps@users.noreply.github.com> | 2017-06-27 01:04:31 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-06-27 01:04:31 +1000 |
| commit | 5c7c84601b74b5f00759baf79dcf72ae6f71b604 (patch) | |
| tree | 79716fb61afb806e20913dd18f66ed42be6f3507 /pywal/settings.py | |
| parent | 7f321568b273f1490a73354ce846b2536dd6d12b (diff) | |
| parent | 94661b371657d6c3d1330ce1bc33180f679b3b91 (diff) | |
Merge pull request #8 from dylanaraps/split
General: Split wal into multiple files.
Diffstat (limited to 'pywal/settings.py')
| -rwxr-xr-x | pywal/settings.py | 12 |
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/" |
