Skip to content

Instantly share code, notes, and snippets.

@simplicitybliss
simplicitybliss / Add Last Email Sent to OmniFocus.applescript
Last active June 1, 2020 14:12
Short AppleScript that adds the last email sent in Mail.app to the OmniFocus Inbox as a task
(*
Add last sent email to OmniFocus Script
by simplicitybliss.com, Sven Fechner
Straight forward script that sends the last email sent in Mail.app to OmniFocus either using the Quick Entry window or silently (well, with Growl based notifications if desired) straight to the Inbox.
You can influence how the task is named by modifying the PreFix and MidFix properties. The note of the task will contain a link back the email in Mail.app.
Use the AppleScript Menu or tools likle FastScripts, Launchbar or Alfred to trigger the script.
@simplicitybliss
simplicitybliss / Add Current Safari Tab to OmniFocus.scpt
Created December 28, 2015 09:36
Adds the page of the currently open tab in the frontmost Safari window to OmniFocus as an Inbox task with a review Context already set
(*
Written by Sven Fechner, @simplicitybliss http://simplicitybliss.com, Dec 2015
Adds the page of the currently open tab in the frontmost Safari window to OmniFocus
Requires you to define the context which should be set by default; Change the property below as required.
*)
property theReviewContext : "Read/Review"
@simplicitybliss
simplicitybliss / waiting-done-things.scpt
Created October 14, 2015 08:01
Completed → Waiting in Things
property waitingForTag : "Waiting"
property daysDue : 2
tell application "Things"
repeat with selectedToDo in selected to dos
set projectToDo to project of selectedToDo
set areaToDo to area of selectedToDo
set status of selectedToDo to completed