nix/home/file/sway/module/Style.nix

20 lines
776 B
Nix
Raw Normal View History

{
2024-11-04 04:37:29 +03:00
config,
...
}: let
accent = config.module.style.color.accent + alpha;
alpha = config.module.style.opacity.hex;
bg = config.module.style.color.bg.dark + alpha;
border = config.module.style.color.border + alpha;
fg = config.module.style.color.fg.light;
in {
text = ''
output * bg ${config.module.wallpaper.path} fill
2024-11-17 08:07:33 +03:00
client.focused "#${accent}" "#${accent}" "#${fg}" "#${accent}" "#${accent}"
client.focused_inactive "#${border}" "#${bg}" "#${fg}" "#${border}" "#${border}"
client.unfocused "#${border}" "#${bg}" "#${fg}" "#${border}" "#${border}"
client.urgent "#${border}" "#${bg}" "#${fg}" "#${border}" "#${border}"
client.placeholder "#${bg}" "#${bg}" "#${fg}" "#${bg}" "#${bg}"
2024-11-04 04:37:29 +03:00
'';
2024-04-03 05:06:03 +03:00
}