This commit is contained in:
2026-03-30 16:27:20 -05:00
parent 7a15a983af
commit 888a607ff7
6 changed files with 257 additions and 5 deletions

View File

@@ -7,11 +7,15 @@ Singleton {
property string wallpaper: json.wallpaper
property string alpha: json.alpha
property string alpha: Math.round(parseInt(json.alpha, 10) * 0xFF / 100).toString(16)
property JsonObject special: json.special
property JsonObject colors: json.colors
function argb(c) {
return c.slice(0, 1) + Pywal.alpha + c.slice(1)
}
FileView {
path: "/home/nathan/.cache/wal/colors.json"