diff options
| author | Fuwn <[email protected]> | 2024-09-12 12:55:48 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-09-12 12:55:48 +0000 |
| commit | baaf371e55b7f5004c90bb7ad08253d1a0ea76bb (patch) | |
| tree | 7d007309e32f75c5dc24eccef7efa27fe98de67c /pywal/settings.py | |
| parent | feat: add fallback colour spelling (diff) | |
| download | pywal.nix-baaf371e55b7f5004c90bb7ad08253d1a0ea76bb.tar.xz pywal.nix-baaf371e55b7f5004c90bb7ad08253d1a0ea76bb.zip | |
chore(pywal): remove unused functionality
Diffstat (limited to 'pywal/settings.py')
| -rw-r--r-- | pywal/settings.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/pywal/settings.py b/pywal/settings.py index 68f8dae..c01c8a0 100644 --- a/pywal/settings.py +++ b/pywal/settings.py @@ -28,7 +28,6 @@ Created by Dylan Araps. """ import os -import platform __version__ = "3.3.1" @@ -42,5 +41,3 @@ XDG_CONF_DIR = os.getenv("XDG_CONFIG_HOME", os.path.join(HOME, ".config")) CACHE_DIR = os.getenv("PYWAL_CACHE_DIR", os.path.join(XDG_CACHE_DIR, "wal")) CONF_DIR = os.path.join(XDG_CONF_DIR, "wal") MODULE_DIR = os.path.dirname(__file__) - -OS = platform.uname()[0] |