Skip to content

Commit

Permalink
fix(gnome.nix): fix keybinds
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelsgirao committed Dec 5, 2024
1 parent b681146 commit d68f9bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/workstation/gnome.nix
Original file line number Diff line number Diff line change
Expand Up @@ -170,12 +170,12 @@
}
// (builtins.listToAttrs (
lib.forEach (lib.range 1 9) (
x: lib.nameValuePair "move-to-workspace-${toString x}" [ "<Super>${toString x}" ]
x: lib.nameValuePair "switch-to-workspace-${toString x}" [ "<Super>${toString x}" ]
)
))
// (builtins.listToAttrs (
lib.forEach (lib.range 1 9) (
x: lib.nameValuePair "switch-to-workspace-${toString x}" [ "<Super><Shift>${toString x}" ]
x: lib.nameValuePair "move-to-workspace-${toString x}" [ "<Super><Shift>${toString x}" ]
)
));
"org/gnome/shell/keybindings" = {
Expand Down

0 comments on commit d68f9bd

Please sign in to comment.