Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Garbee/93ff038ff19b6a71c19f08cf989a6f2a to your computer and use it in GitHub Desktop.
Save Garbee/93ff038ff19b6a71c19f08cf989a6f2a to your computer and use it in GitHub Desktop.
[Desktop Entry]
Version=1.0
Type=Application
Name=RuneScape
GenericName=RuneScape
Comment=RuneScape - A Free MMORPG from Jagex Ltd.
Icon=runescape
Terminal=false
Exec=runescape %u
Categories=Game;
MimeType=x-scheme-handler/rs-launch;x-scheme-handler/rs-launchs
#!/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