Last active
August 29, 2015 14:26
-
-
Save flashvoid/df41829da31162757938 to your computer and use it in GitHub Desktop.
align windows from command line
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
SIZE=400; STEP=100; for i in `wmctrl -l | awk '/VLC/ { print $1 }'`; do wmctrl -ir $i -e 100,$STEP,100,$SIZE,$SIZE; STEP=$(( $STEP + $SIZE )); done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment