Created
January 16, 2021 00:08
-
-
Save rothgar/240d5de099b553c47e697fbc52f68296 to your computer and use it in GitHub Desktop.
Move window down workspace
This file contains 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
#!/bin/bash | |
CURRENT_DESKTOP=$(wmctrl -d | grep '*' | awk '{print $1}') | |
wmctrl -r :ACTIVE: -t $(( ${CURRENT_DESKTOP}+1 )) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment