Created
January 10, 2018 20:13
-
-
Save Scrumplex/9add17aefeaa9cf90fda8db4c50068e0 to your computer and use it in GitHub Desktop.
Kill Steam on Desktop exit
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 | |
_term() { | |
pkill -f -9 $HOME/.local/share/Steam/ubuntu12_32/steam | |
} | |
trap _term EXIT | |
sleep infinity |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment