Last active
May 25, 2021 15:08
-
-
Save skwid138/bd214e5fa3fe3c3f299aa66f2e1fb55d to your computer and use it in GitHub Desktop.
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 | |
# Open Apps used when doing development | |
# Could also include "iTerm" if the script is set to run automatically | |
# As it is now it would likely be run from iTerm | |
declare -a apps=("JetBrains Toolbox" | |
"Viscosity" | |
"MySQLWorkbench" | |
"ClickUp" | |
"Toggl Track" | |
"Slack" | |
"Notes" | |
"Docker" | |
) | |
for app in "${apps[@]}" | |
do | |
# The -a flag tells it to look in /Applications; otherwise a full path may be specified | |
# In testing the case does not seem to matter, but the above casing matches what is in /Applications | |
# If an app is already open, the app will be pulled to the front of the screen | |
open -a $app | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment