Skip to content

Instantly share code, notes, and snippets.

@rick4470
Last active February 15, 2017 20:11
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 rick4470/b4535f0c9139de458ea98c7437a6ecb4 to your computer and use it in GitHub Desktop.
Save rick4470/b4535f0c9139de458ea98c7437a6ecb4 to your computer and use it in GitHub Desktop.
Startup and Shutdown Script
state=$1
if [ "$state" == "start" ]; then
# Start everything now
osascript ~/apple_startup_script.scpt
fi
if [ "$state" == "stop" ]; then
# Stop the applications
osascript ~/apple_shutdown_script.scpt
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment