flake/users/guanranwang/home-manager/modules/wm/bspwm.nix

40 lines
922 B
Nix
Raw Normal View History

{...}: {
2023-11-06 07:48:20 +00:00
imports = [
./components/dunst.nix
./components/feh.nix
./components/picom.nix
./components/polybar.nix
2023-11-09 17:14:03 +00:00
./components/rofi.nix
./components/scripts.nix
2023-11-06 07:48:20 +00:00
./components/sxhkd.nix
2023-11-06 09:02:22 +00:00
./components/udiskie.nix
2023-11-06 07:48:20 +00:00
];
xsession = {
enable = true;
windowManager.bspwm = {
enable = true;
startupPrograms = [
"pgrep -x sxhkd > /dev/null || sxhkd"
"pgrep -x feh > /dev/null || feh --bg-fill ~/.local/share/backgrounds/wallpaper1.png"
];
monitors = {
eDP-1 = ["I" "II" "III" "IV" "V" "VI" "VII" "VIII" "IX" "X"];
};
settings = {
border_width = 2;
window_gap = 4;
focus_follows_pointer = true;
split_ratio = 0.52;
borderless_monocle = true;
gapless_monocle = true;
};
};
};
2023-11-09 17:14:03 +00:00
2023-11-14 03:22:17 +00:00
home.file.".xinitrc" = {
source = ../../dotfiles/.xinitrc;
recursive = true;
2023-11-09 17:14:03 +00:00
};
}