(* OopsieTodoist By Shawn Blanc thesweetsetup.com To use: Get your your global AppleScript invoker of choice and set this script to run with same hotkey you use to activate the Quick Entry pane in Todoist. Note, this script assumes you use the hotkey trigger of SHIFT+SPACE+COMMAND to trigger your quick entry pane in Todoist. If you use a different hotkey trigger, then you will need to adjust the keystrokes that this script tells System Events to press. *) on appIsRunning(GTDAppName) tell application "System Events" return (count of (application processes whose name is GTDAppName)) is not 0 end tell end appIsRunning if appIsRunning("Todoist") then null else tell application "Todoist" activate tell application "System Events" to keystroke space using {shift down, command down} end tell end if