Reorganize files, use less extra options on Sway, move session commands to home-manager

This commit is contained in:
Bun 2025-05-09 17:37:01 -04:00
parent 5cdd7b1de8
commit ee3b40f61f
25 changed files with 64 additions and 107 deletions

View file

@ -31,21 +31,31 @@
childBorder = "#${config.look.colors.urgent}";
};
};
fonts = {
names = [ config.look.fonts.main ];
size = 10.5;
};
window = {
border = config.look.border.int;
hideEdgeBorders = "smart";
};
floating.border = config.look.border.int;
gaps = {
inner = 5;
smartGaps = true;
};
output = {
"*".bg = "~/.assets/wallpapers/1.png fill";
"${config.displays.tower2}".bg = "~/.assets/wallpapers/2.png fill";
"${config.displays.tower3}".bg = "~/.assets/wallpapers/3.png fill";
"*".bg = "${builtins.toString ./wallpapers/1.png} fill";
"${config.displays.tower2}".bg = "${builtins.toString ./wallpapers/2.png} fill";
"${config.displays.tower3}".bg = "${builtins.toString ./wallpapers/3.png} fill";
"${config.displays.estradiol2}".bg = "${builtins.toString ./wallpapers/2.png} fill";
};
};
}