Created
July 18, 2025 19:54
-
-
Save ahkohd/559c97fdb02095eef2e878d859162da0 to your computer and use it in GitHub Desktop.
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
#!/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