dotfiles/dot_config/qtile/colors.py
eeleater 869b78936c Update .config/qtile/colors.py
Update .config/qtile/config.py
Add .config/qtile/config_test_new.py
Update .config/qtile/groups.py
Update .config/qtile/keys.py
Update .config/qtile/layouts.py
2022-11-09 21:19:24 +01:00

9 lines
182 B
Python

import json
import os
theme = 'nord'
user = os.path.expanduser('~')
with open(user + "/.config/qtile/themes/" + theme + ".json") as theme_json:
colors = json.load(theme_json)