diff options
author | Alan Pearce | 2020-11-27 13:12:23 +0100 |
---|---|---|
committer | Alan Pearce | 2020-11-27 13:12:23 +0100 |
commit | db5d0c86b88e30a8acaf40ac2ff7ef8f9da7f7fd (patch) | |
tree | 5f149855ae04d55075b1dd640d330de1b9e18610 | |
parent | d87e103a89195552a7f8a48653624b14b464b71a (diff) | |
download | nixfiles-db5d0c86b88e30a8acaf40ac2ff7ef8f9da7f7fd.tar.lz nixfiles-db5d0c86b88e30a8acaf40ac2ff7ef8f9da7f7fd.tar.zst nixfiles-db5d0c86b88e30a8acaf40ac2ff7ef8f9da7f7fd.zip |
i3: add workspace 0 (grave)
-rw-r--r-- | user/settings/i3.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/user/settings/i3.nix b/user/settings/i3.nix index f23b6d05..4ac2fab6 100644 --- a/user/settings/i3.nix +++ b/user/settings/i3.nix @@ -56,6 +56,7 @@ "${mod}+k" = "focus up"; "${mod}+l" = "focus right"; + "${mod}+grave" = "workspace 0"; "${mod}+1" = "workspace 1"; "${mod}+2" = "workspace 2"; "${mod}+3" = "workspace 3"; @@ -73,6 +74,7 @@ "${mod}+Shift+k" = "move up"; "${mod}+Shift+l" = "move right"; + "${mod}+Shift+grave" = "move container to workspace 0"; "${mod}+Shift+1" = "move container to workspace 1"; "${mod}+Shift+2" = "move container to workspace 2"; "${mod}+Shift+3" = "move container to workspace 3"; |