flakes/modules/user/bspwm.nix

17 lines
463 B
Nix
Raw Normal View History

2021-05-30 21:37:07 +07:00
{ config, ... }: {
xsession.windowManager.bspwm = {
enable = true;
monitors = { eDP-1 = [ "I" "II" "III" "IV" "V" "VI" "VII" "VIII" "XI" "X" ]; };
settings = {
window_gap = 10;
border_width = 0;
split_ratio = 0.5;
top_padding = 25;
2021-05-30 21:37:07 +07:00
};
extraConfig = ''
feh --no-fehbg --bg-fill ${config.xdg.configHome}/xorg/wallpaper.png
systemctl --user restart polybar # home-manager loads this too early
'';
};
}