Created
November 25, 2015 01:55
-
-
Save lichti/d74ddd2b233c5db7528c to your computer and use it in GitHub Desktop.
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 | |
while true | |
do | |
wmctrl -l | awk '{print $1}' > /tmp/windows.txt | |
while read win | |
do | |
echo $win | |
#wmctrl -i -R $win -b add,fullscreen | |
wmctrl -i -R $win -b add,maximized_vert,maximized_horz | |
wmctrl -i -R $win -b add,above | |
sleep 5 | |
done < /tmp/windows.txt | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment