install.fairie/home/Library/Scripts/default-browser.applescript
Brian Zalewski 2731e1121b Latest
2024-05-28 03:45:14 +00:00

14 lines
No EOL
323 B
AppleScript

on run argv
do shell script "defaultbrowser " & item 1 of argv
try
tell application "System Events"
tell application process "CoreServicesUIAgent"
tell window 1
tell (first button whose name starts with "use")
perform action "AXPress"
end tell
end tell
end tell
end tell
end try
end run