thelio76: switch to bspwm & sxhkd
This commit is contained in:
parent
84b5aaf7d2
commit
1ee1df3854
|
@ -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 = {
|
||||||
|
|
Loading…
Reference in New Issue