├── .gitignore ├── 2022-10-02-065309.png ├── 2022-10-02-065739.png ├── 2022-10-02-065802.png ├── OmniFocus.d.ts ├── Project from Template.draftsAction ├── README.md ├── copySkipRepeat.omnifocusjs ├── Resources │ ├── copySkipRepeat.js │ ├── en.lproj │ │ ├── copySkipRepeat.strings │ │ └── manifest.strings │ └── icon.png └── manifest.json ├── draftstemplate.omnifocusjs ├── Resources │ ├── draftstemplate.js │ ├── draftstemplate.png │ └── en.lproj │ │ ├── draftstemplate.strings │ │ └── manifest.strings └── manifest.json ├── duration.omnifocusjs ├── Resources │ ├── duration.js │ ├── duration.png │ └── en.lproj │ │ ├── duration.strings │ │ └── manifest.strings └── manifest.json ├── focus-home.omnifocusjs ├── Resources │ ├── en.lproj │ │ ├── focus.strings │ │ └── manifest.strings │ ├── focus.js │ └── focus.png └── manifest.json ├── focus-not-alarms.omnifocusjs ├── Resources │ ├── en.lproj │ │ ├── focus.strings │ │ └── manifest.strings │ ├── focus.js │ └── focus.png └── manifest.json ├── focus-work.omnifocusjs ├── Resources │ ├── en.lproj │ │ ├── focus.strings │ │ └── manifest.strings │ ├── focus.js │ └── focus.png └── manifest.json ├── repeatTag.omnifocusjs ├── Resources │ ├── en.lproj │ │ ├── manifest.strings │ │ └── repeat.strings │ ├── repeat.js │ └── repeat.png └── manifest.json ├── sentinel.omnifocusjs ├── Resources │ ├── en.lproj │ │ ├── manifest.strings │ │ └── selectionSentinel.strings │ ├── icon.png │ └── selectionSentinel.js └── manifest.json ├── sort.omnifocusjs ├── Resources │ ├── en.lproj │ │ ├── manifest.strings │ │ └── sort.strings │ ├── sort.js │ └── sort.png └── manifest.json ├── template.omnifocusjs ├── Resources │ ├── en.lproj │ │ ├── manifest.strings │ │ └── selection.strings │ ├── icon.png │ ├── lib.js │ └── selection.js └── manifest.json ├── toggle.omnifocusjs ├── Resources │ ├── chooseActivate.js │ ├── chooseOnHold.js │ ├── en.lproj │ │ ├── chooseActivate.strings │ │ ├── chooseOnHold.strings │ │ ├── manifest.strings │ │ ├── selectionActivate.strings │ │ └── selectionOnHold.strings │ ├── pause.png │ ├── play.png │ ├── selectionActivate.js │ ├── selectionOnHold.js │ └── toggleLib.js └── manifest.json └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/.gitignore -------------------------------------------------------------------------------- /2022-10-02-065309.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/2022-10-02-065309.png -------------------------------------------------------------------------------- /2022-10-02-065739.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/2022-10-02-065739.png -------------------------------------------------------------------------------- /2022-10-02-065802.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/2022-10-02-065802.png -------------------------------------------------------------------------------- /OmniFocus.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/OmniFocus.d.ts -------------------------------------------------------------------------------- /Project from Template.draftsAction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/Project from Template.draftsAction -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/README.md -------------------------------------------------------------------------------- /copySkipRepeat.omnifocusjs/Resources/copySkipRepeat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/copySkipRepeat.omnifocusjs/Resources/copySkipRepeat.js -------------------------------------------------------------------------------- /copySkipRepeat.omnifocusjs/Resources/en.lproj/copySkipRepeat.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/copySkipRepeat.omnifocusjs/Resources/en.lproj/copySkipRepeat.strings -------------------------------------------------------------------------------- /copySkipRepeat.omnifocusjs/Resources/en.lproj/manifest.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/copySkipRepeat.omnifocusjs/Resources/en.lproj/manifest.strings -------------------------------------------------------------------------------- /copySkipRepeat.omnifocusjs/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/copySkipRepeat.omnifocusjs/Resources/icon.png -------------------------------------------------------------------------------- /copySkipRepeat.omnifocusjs/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/copySkipRepeat.omnifocusjs/manifest.json -------------------------------------------------------------------------------- /draftstemplate.omnifocusjs/Resources/draftstemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/draftstemplate.omnifocusjs/Resources/draftstemplate.js -------------------------------------------------------------------------------- /draftstemplate.omnifocusjs/Resources/draftstemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/draftstemplate.omnifocusjs/Resources/draftstemplate.png -------------------------------------------------------------------------------- /draftstemplate.omnifocusjs/Resources/en.lproj/draftstemplate.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/draftstemplate.omnifocusjs/Resources/en.lproj/draftstemplate.strings -------------------------------------------------------------------------------- /draftstemplate.omnifocusjs/Resources/en.lproj/manifest.strings: -------------------------------------------------------------------------------- 1 | "com.PaulSidnell.Sort" = "Drafts Template"; 2 | -------------------------------------------------------------------------------- /draftstemplate.omnifocusjs/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/draftstemplate.omnifocusjs/manifest.json -------------------------------------------------------------------------------- /duration.omnifocusjs/Resources/duration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/duration.omnifocusjs/Resources/duration.js -------------------------------------------------------------------------------- /duration.omnifocusjs/Resources/duration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/duration.omnifocusjs/Resources/duration.png -------------------------------------------------------------------------------- /duration.omnifocusjs/Resources/en.lproj/duration.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/duration.omnifocusjs/Resources/en.lproj/duration.strings -------------------------------------------------------------------------------- /duration.omnifocusjs/Resources/en.lproj/manifest.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/duration.omnifocusjs/Resources/en.lproj/manifest.strings -------------------------------------------------------------------------------- /duration.omnifocusjs/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/duration.omnifocusjs/manifest.json -------------------------------------------------------------------------------- /focus-home.omnifocusjs/Resources/en.lproj/focus.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/focus-home.omnifocusjs/Resources/en.lproj/focus.strings -------------------------------------------------------------------------------- /focus-home.omnifocusjs/Resources/en.lproj/manifest.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/focus-home.omnifocusjs/Resources/en.lproj/manifest.strings -------------------------------------------------------------------------------- /focus-home.omnifocusjs/Resources/focus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/focus-home.omnifocusjs/Resources/focus.js -------------------------------------------------------------------------------- /focus-home.omnifocusjs/Resources/focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/focus-home.omnifocusjs/Resources/focus.png -------------------------------------------------------------------------------- /focus-home.omnifocusjs/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/focus-home.omnifocusjs/manifest.json -------------------------------------------------------------------------------- /focus-not-alarms.omnifocusjs/Resources/en.lproj/focus.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/focus-not-alarms.omnifocusjs/Resources/en.lproj/focus.strings -------------------------------------------------------------------------------- /focus-not-alarms.omnifocusjs/Resources/en.lproj/manifest.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/focus-not-alarms.omnifocusjs/Resources/en.lproj/manifest.strings -------------------------------------------------------------------------------- /focus-not-alarms.omnifocusjs/Resources/focus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/focus-not-alarms.omnifocusjs/Resources/focus.js -------------------------------------------------------------------------------- /focus-not-alarms.omnifocusjs/Resources/focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/focus-not-alarms.omnifocusjs/Resources/focus.png -------------------------------------------------------------------------------- /focus-not-alarms.omnifocusjs/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/focus-not-alarms.omnifocusjs/manifest.json -------------------------------------------------------------------------------- /focus-work.omnifocusjs/Resources/en.lproj/focus.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/focus-work.omnifocusjs/Resources/en.lproj/focus.strings -------------------------------------------------------------------------------- /focus-work.omnifocusjs/Resources/en.lproj/manifest.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/focus-work.omnifocusjs/Resources/en.lproj/manifest.strings -------------------------------------------------------------------------------- /focus-work.omnifocusjs/Resources/focus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/focus-work.omnifocusjs/Resources/focus.js -------------------------------------------------------------------------------- /focus-work.omnifocusjs/Resources/focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/focus-work.omnifocusjs/Resources/focus.png -------------------------------------------------------------------------------- /focus-work.omnifocusjs/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/focus-work.omnifocusjs/manifest.json -------------------------------------------------------------------------------- /repeatTag.omnifocusjs/Resources/en.lproj/manifest.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/repeatTag.omnifocusjs/Resources/en.lproj/manifest.strings -------------------------------------------------------------------------------- /repeatTag.omnifocusjs/Resources/en.lproj/repeat.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/repeatTag.omnifocusjs/Resources/en.lproj/repeat.strings -------------------------------------------------------------------------------- /repeatTag.omnifocusjs/Resources/repeat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/repeatTag.omnifocusjs/Resources/repeat.js -------------------------------------------------------------------------------- /repeatTag.omnifocusjs/Resources/repeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/repeatTag.omnifocusjs/Resources/repeat.png -------------------------------------------------------------------------------- /repeatTag.omnifocusjs/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/repeatTag.omnifocusjs/manifest.json -------------------------------------------------------------------------------- /sentinel.omnifocusjs/Resources/en.lproj/manifest.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/sentinel.omnifocusjs/Resources/en.lproj/manifest.strings -------------------------------------------------------------------------------- /sentinel.omnifocusjs/Resources/en.lproj/selectionSentinel.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/sentinel.omnifocusjs/Resources/en.lproj/selectionSentinel.strings -------------------------------------------------------------------------------- /sentinel.omnifocusjs/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/sentinel.omnifocusjs/Resources/icon.png -------------------------------------------------------------------------------- /sentinel.omnifocusjs/Resources/selectionSentinel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/sentinel.omnifocusjs/Resources/selectionSentinel.js -------------------------------------------------------------------------------- /sentinel.omnifocusjs/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/sentinel.omnifocusjs/manifest.json -------------------------------------------------------------------------------- /sort.omnifocusjs/Resources/en.lproj/manifest.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/sort.omnifocusjs/Resources/en.lproj/manifest.strings -------------------------------------------------------------------------------- /sort.omnifocusjs/Resources/en.lproj/sort.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/sort.omnifocusjs/Resources/en.lproj/sort.strings -------------------------------------------------------------------------------- /sort.omnifocusjs/Resources/sort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/sort.omnifocusjs/Resources/sort.js -------------------------------------------------------------------------------- /sort.omnifocusjs/Resources/sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/sort.omnifocusjs/Resources/sort.png -------------------------------------------------------------------------------- /sort.omnifocusjs/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/sort.omnifocusjs/manifest.json -------------------------------------------------------------------------------- /template.omnifocusjs/Resources/en.lproj/manifest.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/template.omnifocusjs/Resources/en.lproj/manifest.strings -------------------------------------------------------------------------------- /template.omnifocusjs/Resources/en.lproj/selection.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/template.omnifocusjs/Resources/en.lproj/selection.strings -------------------------------------------------------------------------------- /template.omnifocusjs/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/template.omnifocusjs/Resources/icon.png -------------------------------------------------------------------------------- /template.omnifocusjs/Resources/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/template.omnifocusjs/Resources/lib.js -------------------------------------------------------------------------------- /template.omnifocusjs/Resources/selection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/template.omnifocusjs/Resources/selection.js -------------------------------------------------------------------------------- /template.omnifocusjs/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/template.omnifocusjs/manifest.json -------------------------------------------------------------------------------- /toggle.omnifocusjs/Resources/chooseActivate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/toggle.omnifocusjs/Resources/chooseActivate.js -------------------------------------------------------------------------------- /toggle.omnifocusjs/Resources/chooseOnHold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/toggle.omnifocusjs/Resources/chooseOnHold.js -------------------------------------------------------------------------------- /toggle.omnifocusjs/Resources/en.lproj/chooseActivate.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/toggle.omnifocusjs/Resources/en.lproj/chooseActivate.strings -------------------------------------------------------------------------------- /toggle.omnifocusjs/Resources/en.lproj/chooseOnHold.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/toggle.omnifocusjs/Resources/en.lproj/chooseOnHold.strings -------------------------------------------------------------------------------- /toggle.omnifocusjs/Resources/en.lproj/manifest.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/toggle.omnifocusjs/Resources/en.lproj/manifest.strings -------------------------------------------------------------------------------- /toggle.omnifocusjs/Resources/en.lproj/selectionActivate.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/toggle.omnifocusjs/Resources/en.lproj/selectionActivate.strings -------------------------------------------------------------------------------- /toggle.omnifocusjs/Resources/en.lproj/selectionOnHold.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/toggle.omnifocusjs/Resources/en.lproj/selectionOnHold.strings -------------------------------------------------------------------------------- /toggle.omnifocusjs/Resources/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/toggle.omnifocusjs/Resources/pause.png -------------------------------------------------------------------------------- /toggle.omnifocusjs/Resources/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/toggle.omnifocusjs/Resources/play.png -------------------------------------------------------------------------------- /toggle.omnifocusjs/Resources/selectionActivate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/toggle.omnifocusjs/Resources/selectionActivate.js -------------------------------------------------------------------------------- /toggle.omnifocusjs/Resources/selectionOnHold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/toggle.omnifocusjs/Resources/selectionOnHold.js -------------------------------------------------------------------------------- /toggle.omnifocusjs/Resources/toggleLib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/toggle.omnifocusjs/Resources/toggleLib.js -------------------------------------------------------------------------------- /toggle.omnifocusjs/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/toggle.omnifocusjs/manifest.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psidnell/ofplugins/HEAD/tsconfig.json --------------------------------------------------------------------------------