mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
7 lines
179 B
Python
7 lines
179 B
Python
from os.path import expanduser
|
|
from yaml import safe_load
|
|
|
|
# Get color config from pywal
|
|
wal_loc = expanduser("~/.config/qtile/themes/monokai.yml")
|
|
wal = safe_load(open(wal_loc))
|