flakes/modules/user/bspwm.nix
LavaDesu ed93b93c43
user/bspwm: remove declarative wallpaper
so i can use other wallpapers without feeling weird for including it in
a cc0 repo
2022-03-22 23:42:43 +07:00

16 lines
459 B
Nix

{ config, pkgs, ... }: {
xsession.windowManager.bspwm = {
enable = true;
monitors = { eDP-1 = [ "1" "2" "3" "4" "5" "6" "7" "8" "9" "0"]; };
settings = {
window_gap = 10;
border_width = 0;
split_ratio = 0.5;
top_padding = 25;
};
extraConfig = ''
${pkgs.feh}/bin/feh --no-fehbg --bg-fill ~/Pictures/Wallpapers/current
systemctl --user restart polybar # home-manager loads this too early
'';
};
}