13 lines
227 B
AppleScript
13 lines
227 B
AppleScript
-- Author: Markus Bordihn (mbordihn@google.com)
|
|
-- Description: Open the passed URL over Safari
|
|
|
|
on run argv
|
|
|
|
tell application "Safari"
|
|
make new document with properties {URL: (item 1 of argv)}
|
|
end tell
|
|
|
|
delay 60
|
|
|
|
end run
|