new_dots/home/modules/bspwm.nix
2026-01-03 12:48:28 +01:00

15 lines
311 B
Nix

{
xsession.windowManager.bspwm = {
enable = true;
settings = {
focus_follows_pointer = true;
pointer_follows_focus = true;
pointer_follows_monitor = true;
};
extraConfig = ''
feh --bg-fill "/home/benag/.nix-config/assets/pictures/bocchi_wallpaper.png"
'';
};
}