Skip to content

Instantly share code, notes, and snippets.

@lichti
Created November 25, 2015 01:55
Show Gist options
  • Save lichti/d74ddd2b233c5db7528c to your computer and use it in GitHub Desktop.
Save lichti/d74ddd2b233c5db7528c to your computer and use it in GitHub Desktop.
#!/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