Skip to content

Instantly share code, notes, and snippets.

@hex2010
Last active October 1, 2016 06:32
Show Gist options
  • Save hex2010/11f784eb6007db98eb4024e04322c075 to your computer and use it in GitHub Desktop.
Save hex2010/11f784eb6007db98eb4024e04322c075 to your computer and use it in GitHub Desktop.
Auto relaunch specific application when it crash.(MacOS)
# run command "crontab -e" to edit crontab
# require pidof utils install in /usr/local/bin
* * * * * bash -c "[ -z \"`/usr/local/bin/pidof Spectacle`'\" ] && open -a Spectacle"
@hex2010
Copy link
Author

hex2010 commented Oct 1, 2016

Spectacle.app crash randomly on my MacBook, so...
better solution see https://gist.github.com/hex2010/5859c0ec2ec02c66000641836ba64dc7

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment