2024-10-15 02:40:43 -04:00
|
|
|
{ config, pkgs, ... }:
|
2024-10-09 03:36:08 -04:00
|
|
|
{
|
2024-08-24 22:16:51 -04:00
|
|
|
wayland.windowManager.sway = {
|
|
|
|
enable = true;
|
|
|
|
wrapperFeatures.gtk = true;
|
|
|
|
checkConfig = false;
|
2024-09-23 16:22:01 -04:00
|
|
|
config = {
|
2024-08-24 22:16:51 -04:00
|
|
|
colors = {
|
|
|
|
focused = {
|
2024-10-15 02:40:43 -04:00
|
|
|
border = "#${config.look.colors.prime}";
|
|
|
|
background = "#${config.look.colors.prime}";
|
2024-08-24 22:16:51 -04:00
|
|
|
text = "#FFFFFF";
|
2024-10-15 02:40:43 -04:00
|
|
|
indicator = "#${config.look.colors.actSplit}";
|
|
|
|
childBorder = "#${config.look.colors.prime}";
|
2024-08-24 22:16:51 -04:00
|
|
|
};
|
|
|
|
focusedInactive = {
|
2024-10-15 02:40:43 -04:00
|
|
|
border = "#${config.look.colors.accent}";
|
|
|
|
background = "#${config.look.colors.accent}";
|
|
|
|
text = "#${config.look.colors.text}";
|
|
|
|
indicator = "#${config.look.colors.split}";
|
|
|
|
childBorder = "#${config.look.colors.accent}";
|
2024-08-24 22:16:51 -04:00
|
|
|
};
|
|
|
|
unfocused = {
|
2024-10-15 02:40:43 -04:00
|
|
|
border = "#${config.look.colors.dark}";
|
|
|
|
background = "#${config.look.colors.dark}";
|
|
|
|
text = "#${config.look.colors.text}";
|
|
|
|
indicator = "#${config.look.colors.split}";
|
|
|
|
childBorder = "#${config.look.colors.split}";
|
2024-08-24 22:16:51 -04:00
|
|
|
};
|
|
|
|
urgent = {
|
2024-10-15 02:40:43 -04:00
|
|
|
border = "#${config.look.colors.urgent}";
|
|
|
|
background = "#${config.look.colors.urgent}";
|
|
|
|
text = "#${config.look.colors.text}";
|
|
|
|
indicator = "#${config.look.colors.urgent}";
|
|
|
|
childBorder = "#${config.look.colors.urgent}";
|
2024-08-24 22:16:51 -04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
fonts = {
|
2024-10-15 02:40:43 -04:00
|
|
|
names = ["${config.look.fonts.main}"];
|
2024-08-24 22:16:51 -04:00
|
|
|
size = 10.5;
|
|
|
|
};
|
|
|
|
gaps = {
|
|
|
|
inner = 5;
|
|
|
|
smartGaps = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|