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
This commit is contained in:
eeleater 2022-11-09 21:19:24 +01:00
parent 63872c9051
commit 869b78936c
6 changed files with 224 additions and 26 deletions

View file

@ -1,6 +1,9 @@
import json
import os
theme = 'nord'
with open("/home/eeleater/.config/qtile/themes/" + theme + ".json") as theme_json:
user = os.path.expanduser('~')
with open(user + "/.config/qtile/themes/" + theme + ".json") as theme_json:
colors = json.load(theme_json)