Created
November 5, 2014 03:59
-
-
Save tjluoma/a9c3d652011a00857cca to your computer and use it in GitHub Desktop.
launchd plist to be used with https://github.com/danielpunkass/RemindersImport. Assumes: 1) /usr/local/bin/RemindersImport is the correct path; 2) your Reminders.app reminders list is "My Reminders List" (edit to suit you). be sure to change "/Users/luomat/" to the proper path to your "/Users/shortname" on your Mac!
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>Label</key> | |
| <string>com.tjluoma.omnifocus.RemindersImport</string> | |
| <key>ProgramArguments</key> | |
| <array> | |
| <string>/usr/local/bin/RemindersImport</string> | |
| <string>My Reminders List</string> | |
| </array> | |
| <key>RunAtLoad</key> | |
| <true/> | |
| <key>WatchPaths</key> | |
| <array> | |
| <string>/Users/luomat/Library/Calendars</string> | |
| </array> | |
| </dict> | |
| </plist> |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Oh! I suppose I ought to tell you how to use this!
To Install
Save it as
~/Library/LaunchAgents/com.tjluoma.omnifocus.RemindersImport.plistand then enter this in Terminal.app:launchctl load ~/Library/LaunchAgents/com.tjluoma.omnifocus.RemindersImport.plistThat will immediately run
RemindersImportprogram and then it will be triggered automatically in the future.To uninstall
First do this in Terminal:
launchctl unload ~/Library/LaunchAgents/com.tjluoma.omnifocus.RemindersImport.plistand then just delete the ~/Library/LaunchAgents/com.tjluoma.omnifocus.RemindersImport.plist file.