Skip to content

Instantly share code, notes, and snippets.

@ryanlaner
ryanlaner / gist:02b10ddbc68251cd9f1c
Created March 18, 2015 06:27
Apple Reminders.app -- Delete Completed Reminders
set the theList to {"Reminders", "Groceries"} -- Edit/Add all Reminder lists to remove completed items from
repeat with eachList in theList
tell application "Reminders"
-- Loop thru reminders in the targeted reminder.app list
tell list eachList
set theTasks to every reminder
repeat with theTask in theTasks
if theTask is completed then