15 lines
311 B
Nix
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"
|
|
'';
|
|
};
|
|
}
|