Thread: macOS Shortcuts
View Single Post
turtle
Lord of the Rant.
Formerly turtle2472
 
Join Date: Mar 2005
Location: Upstate South Carolina
 
2021-11-16, 18:23

You should. There was an app a while ago that I think died a slow death of neglect that used to make launchd and easy GUI thing... I didn't bother looking again. I was really hoping it would be included with Shortcuts, but it isn't.

Instead I now have this:
Code:
com.turtle.MicrosoftTeams.plist <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>Label</key> <string>com.turtle.MicrosoftTeams</string> <key>ProgramArguments</key> <array> <string>/usr/bin/open</string> <string>/Applications/Microsoft Teams.app</string> </array> <key>StartCalendarInterval</key> <dict> <key>Minute</key> <integer>00</integer> <key>Hour</key> <integer>8</integer> <key>Weekday</key> <integer>12345</integer> </dict> </dict> </plist>
Edit: I liked it so much I did one for Outlook too, only it loads earlier so it can run mail rules before I get to work!
Code:
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>Label</key> <string>com.turtle.MicrosoftOutlook</string> <key>ProgramArguments</key> <array> <string>/usr/bin/open</string> <string>/Applications/Microsoft Outlook.app</string> </array> <key>StartCalendarInterval</key> <dict> <key>Minute</key> <integer>45</integer> <key>Hour</key> <integer>7</integer> <key>Weekday</key> <integer>12345</integer> </dict> </dict> </plist>

Louis L'Amour, “To make democracy work, we must be a nation of participants, not simply observers. One who does not vote has no right to complain.”
Visit our archived Minecraft world! | Maybe someday I'll proof read, until then deal with it.

Last edited by turtle : 2021-11-16 at 18:53.
  quote