Created
April 30, 2019 10:16
-
-
Save brandonpittman/e724edaa3c8788c12a01ef50d66c84de to your computer and use it in GitHub Desktop.
Open and Complete for Things 3
This file contains hidden or 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
on run | |
tell application "Things3" | |
repeat with todo in selected to dos | |
set completion date of todo to (current date) | |
set theNotes to notes of todo | |
repeat with todoParagraph in paragraphs of theNotes | |
if todoParagraph contains "://" then | |
do shell script "open " & quoted form of todoParagraph | |
end if | |
end repeat | |
end repeat | |
end tell | |
end run |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment