feat(beautiful: xresources): read rgb: and argb: prefixed colors
This commit is contained in:
parent
6ca85af53b
commit
2d7fc8bc49
|
@ -56,6 +56,9 @@ function xresources.get_current_theme()
|
||||||
print("W: beautiful: can't get colorscheme from xrdb (using fallback).")
|
print("W: beautiful: can't get colorscheme from xrdb (using fallback).")
|
||||||
return fallback
|
return fallback
|
||||||
end
|
end
|
||||||
|
if colors[key]:find("rgb:") then
|
||||||
|
colors[key] = "#"..colors[key]:gsub("[a]?rgb:", ""):gsub("/", "")
|
||||||
|
end
|
||||||
end
|
end
|
||||||
return colors
|
return colors
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue