Fix workspace keybinds replacing all other keybinds
This commit is contained in:
parent
4a45f67fa4
commit
08a62cf353
1 changed files with 22 additions and 19 deletions
|
@ -63,7 +63,9 @@ in with lib; {
|
||||||
size = 8.0;
|
size = 8.0;
|
||||||
};
|
};
|
||||||
|
|
||||||
keybindings = (genWorkspaces { inherit (cfg.workspaces) numbered named; }) // {
|
keybindings = mkMerge [
|
||||||
|
(genWorkspaces { inherit (cfg.workspaces) numbered named; })
|
||||||
|
{
|
||||||
"${mod}+h" = "focus left";
|
"${mod}+h" = "focus left";
|
||||||
"${mod}+j" = "focus down";
|
"${mod}+j" = "focus down";
|
||||||
"${mod}+k" = "focus up";
|
"${mod}+k" = "focus up";
|
||||||
|
@ -86,7 +88,8 @@ in with lib; {
|
||||||
"${mod}+Tab" = "exec ${pkgs.firefox}/bin/firefox";
|
"${mod}+Tab" = "exec ${pkgs.firefox}/bin/firefox";
|
||||||
|
|
||||||
"${mod}+Backspace" = "mode kill";
|
"${mod}+Backspace" = "mode kill";
|
||||||
};
|
}
|
||||||
|
];
|
||||||
|
|
||||||
modes."kill" = {
|
modes."kill" = {
|
||||||
Backspace = "kill; mode default";
|
Backspace = "kill; mode default";
|
||||||
|
|
Loading…
Reference in a new issue