flake/home/applications/bspwm/default.nix

76 lines
1.6 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"
2024-01-06 01:01:22 +00:00
"pgrep -x feh > /dev/null || feh --no-fehbg --bg-fill ~/.local/share/backgrounds/Minato-Aqua-Dark.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
2024-02-15 06:21:59 +00:00
for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
[ -x "$f" ] && . "$f"
done
unset f
2023-11-25 09:02:50 +00:00
fi
2024-01-06 00:21:00 +00:00
# https://wiki.archlinux.org/title/Cursor_themes#Change_X_shaped_default_cursor
xsetroot -cursor_name left_ptr
2023-11-25 09:02:50 +00:00
exec bspwm
'';
}