Skip to content

Instantly share code, notes, and snippets.

@rothgar
Created January 16, 2021 00:08
Show Gist options
  • Save rothgar/240d5de099b553c47e697fbc52f68296 to your computer and use it in GitHub Desktop.
Save rothgar/240d5de099b553c47e697fbc52f68296 to your computer and use it in GitHub Desktop.
Move window down workspace
#!/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