Skip to content

Instantly share code, notes, and snippets.

@ahkohd
Created July 18, 2025 19:54
Show Gist options
  • Save ahkohd/559c97fdb02095eef2e878d859162da0 to your computer and use it in GitHub Desktop.
Save ahkohd/559c97fdb02095eef2e878d859162da0 to your computer and use it in GitHub Desktop.
#!/usr/bin/osascript
# Required parameters:
# @raycast.schemaVersion 1
# @raycast.title focus window_name
# @raycast.mode silent
# Optional parameters:
# @raycast.icon 🪟
# Documentation:
# @raycast.author aremuio
# @raycast.authorURL https://raycast.com/aremuio
tell application "System Events"
tell process "window_name"
set frontmost to true
if (count of windows) > 0 then
tell window 1
perform action "AXRaise"
end tell
end if
end tell
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment