Created
January 6, 2018 13:00
-
-
Save Garbee/93ff038ff19b6a71c19f08cf989a6f2a to your computer and use it in GitHub Desktop.
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
#!/bin/bash | |
runescape-launcher > /dev/null 2>&1 & | |
sleep 10s | |
remove=$(xdotool search --class "Runescape" | sed '$d') | |
for id in $remove; do | |
xdotool windowunmap $id | |
done | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment