Does anyone have any automation scripts they want to share?
Shell or AppleScripts
e.g.
on run {input, parameters}
if application "Application" is running then
tell application "Application" to make new window with properties {mode:"incognito"}
else
do shell script "open -a /Applications/Example\\ Example.app --args --incognito"
end if
tell application "Application" to activate
return input
end run