Skip to content

Instantly share code, notes, and snippets.

@samo9789
samo9789 / reminders_of_the_day.scpt
Created June 20, 2013 21:16
List the day's reminders (from the Apple Reminders App) using Apple Script
tell application "Reminders"
set output to ""
set output to output & "Reminders for " & weekday of (current date) & ":"
set myList to "Reminders"
set hasOne to false
if (count of (reminders in list myList whose completed is false)) > 0 then
set todoList to reminders in list myList whose completed is false
repeat with itemNum from 1 to (count of (reminders in list myList whose completed is false))