Skip to content

Instantly share code, notes, and snippets.

@liuxd
Last active January 14, 2025 22:02
Show Gist options
  • Save liuxd/0687a7e93f6fc7ff10cd2642e5124686 to your computer and use it in GitHub Desktop.
Save liuxd/0687a7e93f6fc7ff10cd2642e5124686 to your computer and use it in GitHub Desktop.
Open all my dev apps in one go.
#!/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