mirror of
https://github.com/dylanaraps/pywal.git
synced 2024-12-01 20:33:51 +01:00
24 lines
474 B
Python
24 lines
474 B
Python
"""
|
|
'||
|
|
... ... .... ... ... ... ... .... ||
|
|
||' || '|. | || || | '' .|| ||
|
|
|| | '|.| ||| ||| .|' || ||
|
|
||...' '| | | '|..'|' .||.
|
|
|| .. |
|
|
'''' ''
|
|
Created by Dylan Araps.
|
|
"""
|
|
|
|
import pathlib
|
|
import platform
|
|
|
|
|
|
__version__ = "0.5.12"
|
|
|
|
|
|
HOME = pathlib.Path.home()
|
|
CACHE_DIR = HOME / ".cache/wal/"
|
|
MODULE_DIR = pathlib.Path(__file__).parent
|
|
COLOR_COUNT = 16
|
|
OS = platform.uname()[0]
|