This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Verifying that "moritzz.id" is my Blockstack ID. https://onename.com/moritzz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tell application "Reminders" | |
-- ask which list to add to | |
set allLists to name of every list | |
set chosenReminderList to (choose from list allLists with prompt "Select the list to add reminders to" without empty selection allowed) | |
-- if the user presses cancel, abort | |
if chosenReminderList is false then return | |
set chosenReminderList to chosenReminderList as string | |
end tell | |
tell application "Things3" | |
set allLists to name of every list |