Last active
February 24, 2022 18:43
-
-
Save magujs/f8060343b9aedc7e6514 to your computer and use it in GitHub Desktop.
i3 move a worksapce to another monitor (multi monitor setup)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# i3 move a workspace to another monitor (multi monitor setup) | |
mode "move_workspace" { | |
bindsym Up move workspace to output up | |
bindsym Down move workspace to output down | |
bindsym Left move workspace to output left | |
bindsym Up move workspace to output up | |
bindsym Escape mode "default" | |
} | |
bindsym $mod+o mode "move_workspace" |
https://gist.github.com/magujs/f8060343b9aedc7e6514#file-i3-config-move_workspace-L6
bindsym Right move workspace to output right
😉
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for this! This works perfectly. :)