thelio76: switch to bspwm & sxhkd

This commit is contained in:
Alex 2024-07-28 11:18:13 -04:00
parent 84b5aaf7d2
commit 1ee1df3854
1 changed files with 21 additions and 4 deletions

View File

@ -37,7 +37,9 @@
nixpkgs-fmt nixpkgs-fmt
obsidian obsidian
picard picard
polybar
rawtherapee rawtherapee
rofi
spotify spotify
sqlitebrowser sqlitebrowser
steam steam
@ -59,14 +61,29 @@
}; };
}; };
xsession.windowManager.bspwm = { xsession = {
enable = true; enable = true;
settings = { windowManager.bspwm = {
border_width = 10; enable = true;
settings = {
border_width = 10;
};
extraConfig = ''
polybar &
'';
startupPrograms = [ "kitty" ];
}; };
startupPrograms = [ "kitty" ];
}; };
services.sxhkd =
{
enable = true;
keybindings = {
"super + Return" = "kitty";
"super + @space" = "rofi";
};
};
# User software configurations # User software configurations
programs = { programs = {
bash = { bash = {