Skip to content

Instantly share code, notes, and snippets.

View AarneHuttunen's full-sized avatar

Aarne Huttunen AarneHuttunen

  • Helsinki
View GitHub Profile
@AarneHuttunen
AarneHuttunen / workflow.wflow
Created February 3, 2017 12:59
Simple applescript workflow to open specific Google profile in Chrome and open a fixed set of urls.
activate application "Google Chrome"
tell application "System Events"
tell process "Google Chrome"
click menu item "Name of your profile" of menu 1 of menu bar item "People" of menu bar 1
end tell
open location "http://example.com"
open location "http://anotherexample.com"
end tell