flake/users/guanranwang/home-manager/applications/bspwm/default.nix

73 lines
1.5 KiB
Nix
Raw Normal View History

2023-11-25 09:02:50 +00:00
{pkgs, ...}: {
2023-11-06 07:48:20 +00:00
imports = [
2023-12-18 19:06:50 +00:00
../common/wm.nix
2023-11-28 05:40:22 +00:00
../dunst
../picom
../polybar
../rofi
../sxhkd
../udiskie
2023-11-06 07:48:20 +00:00
];
2023-11-25 09:02:50 +00:00
home.packages = with pkgs; [flameshot feh];
xsession = {
enable = true;
windowManager.bspwm = {
enable = true;
startupPrograms = [
"pgrep -x sxhkd > /dev/null || sxhkd"
2023-12-11 09:12:35 +00:00
"pgrep -x feh > /dev/null || feh --bg-fill ~/.local/share/backgrounds/aqua.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-25 09:02:50 +00:00
home.file.".xinitrc".text = ''
2023-12-15 13:53:06 +00:00
#!/usr/bin/env bash
2023-11-25 09:02:50 +00:00
userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/etc/X11/xinit/.Xresources
sysmodmap=/etc/X11/xinit/.Xmodmap
# merge in defaults and keymaps
if [ -f $sysresources ]; then
xrdb -merge $sysresources
fi
if [ -f $sysmodmap ]; then
xmodmap $sysmodmap
fi
if [ -f "$userresources" ]; then
xrdb -merge "$userresources"
fi
if [ -f "$usermodmap" ]; then
xmodmap "$usermodmap"
fi
# start some nice programs
if [ -d /etc/X11/xinit/xinitrc.d ] ; then
for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
[ -x "$f" ] && . "$f"
done
unset f
fi
exec bspwm
'';
}