Files
2026-06-12 08:05:48 +02:00

12 lines
239 B
Python

import os
import json
# Gets colors from wallust wallpaper
def get_colors():
with open(f"{os.path.expanduser('~')}/.cache/qtile/colors.json") as f:
colors = json.load(f)
return colors['colors']
colors = get_colors()