Dots/home/modules/bspwm.nix
2025-11-10 19:57:23 +01:00

20 lines
377 B
Nix
Executable file

{
xsession.windowManager.bspwm = {
enable = true;
settings = {
focus_follows_pointer = true;
pointer_follows_focus = true;
pointer_follows_monitor = true;
};
startupPrograms = [
"sxhkd"
"polybar"
];
extraConfig = ''
feh --bg-fill "/home/benag/.nix-config/assets/wallpaper/bocchi-light-guitar.png"
'';
};
}