Last active
January 14, 2025 22:02
-
-
Save liuxd/0687a7e93f6fc7ff10cd2642e5124686 to your computer and use it in GitHub Desktop.
Open all my dev apps in one go.
This file contains hidden or 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 | |
# Required parameters: | |
# @raycast.schemaVersion 1 | |
# @raycast.title Open DevKit | |
# @raycast.mode compact | |
# Optional parameters: | |
# @raycast.icon 🤖 | |
declare -a apps=("Slack" "Obsidian" "Microsoft Outlook" "GoLand" "Google Chrome" "iTerm" "Sequel Ace") | |
for app in "${apps[@]}" | |
do | |
open -a "$app" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment