nix/module/sway/Config.nix

24 lines
846 B
Nix
Raw Normal View History

2024-04-04 13:51:06 +03:00
{ pkgs, wallpaper, style, ... }: let
accent = style.color.accent;
bg = style.color.bg_dark;
bg_alt = style.color.bg;
fg = style.color.fg;
fg_alt = style.color.fg_dark;
negative = style.color.negative;
2024-04-03 05:06:03 +03:00
in {
config = pkgs.writeText "sway_config" ''
# Read `man 5 sway` for a complete reference.
output * bg ${wallpaper.path} fill
client.focused #${accent} #${accent} #${fg} #${accent} #${accent}
client.focused_inactive #${bg_alt} #${bg_alt} #${fg} #${bg_alt} #${bg_alt}
client.unfocused #${bg_alt} #${bg_alt} #${fg_alt} #${bg_alt} #${bg_alt}
client.urgent #${bg_alt} #${negative} #${fg_alt} #${negative} #${negative}
client.placeholder #${bg} #${bg} #${fg} #${bg} #${bg}
include /etc/sway/config.d/*
include $SWAY_CONFIG/*
'';
}