├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── betterstopwatch.gif ├── ending_extended_pomodoro.GIF ├── extendedpomodoro.GIF ├── extendpomo.GIF ├── img.png ├── img_1.png ├── img_2.png ├── img_3.png ├── img_4.png ├── img_5.png ├── img_6.png ├── img_7.png ├── keyboardshortcuts2.png ├── loadworkbench.GIF ├── loggingtasksetting.png ├── loggingtaskvideo.GIF ├── logpomodorotime.GIF ├── manifest.json ├── package.json ├── persistedworkbench.png ├── persistedworkbench2.png ├── persistent_workbench.png ├── pomopersistentfolder.GIF ├── pomoworkbench.GIF ├── rollup.config.js ├── samplellog.png ├── savepomoworkbench.GIF ├── sortableworkbench.gif ├── src ├── audio_urls.ts ├── current_progress_modal.ts ├── custom_time_modal.ts ├── extend_modal.ts ├── file_utility.ts ├── flexipomosuggesters │ ├── Error.ts │ ├── FileSuggester.ts │ ├── FolderSuggester.ts │ ├── LoadingSuggester.ts │ ├── Log.ts │ ├── SavingSuggester.ts │ ├── Utils.ts │ ├── app-helper.ts │ ├── collection-helper.ts │ ├── path.ts │ └── suggest.ts ├── main.ts ├── parse_utility.ts ├── pomo_task_item.ts ├── settings.ts ├── timer.ts ├── white_noise.ts ├── workbench.ts ├── workbench_data.ts ├── workbench_view.ts └── workitem.ts ├── startpomo.GIF ├── styles.css ├── timer_screenshot.png ├── tsconfig.json ├── versions.json └── workbench3.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/README.md -------------------------------------------------------------------------------- /betterstopwatch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/betterstopwatch.gif -------------------------------------------------------------------------------- /ending_extended_pomodoro.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/ending_extended_pomodoro.GIF -------------------------------------------------------------------------------- /extendedpomodoro.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/extendedpomodoro.GIF -------------------------------------------------------------------------------- /extendpomo.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/extendpomo.GIF -------------------------------------------------------------------------------- /img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/img.png -------------------------------------------------------------------------------- /img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/img_1.png -------------------------------------------------------------------------------- /img_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/img_2.png -------------------------------------------------------------------------------- /img_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/img_3.png -------------------------------------------------------------------------------- /img_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/img_4.png -------------------------------------------------------------------------------- /img_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/img_5.png -------------------------------------------------------------------------------- /img_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/img_6.png -------------------------------------------------------------------------------- /img_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/img_7.png -------------------------------------------------------------------------------- /keyboardshortcuts2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/keyboardshortcuts2.png -------------------------------------------------------------------------------- /loadworkbench.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/loadworkbench.GIF -------------------------------------------------------------------------------- /loggingtasksetting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/loggingtasksetting.png -------------------------------------------------------------------------------- /loggingtaskvideo.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/loggingtaskvideo.GIF -------------------------------------------------------------------------------- /logpomodorotime.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/logpomodorotime.GIF -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/package.json -------------------------------------------------------------------------------- /persistedworkbench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/persistedworkbench.png -------------------------------------------------------------------------------- /persistedworkbench2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/persistedworkbench2.png -------------------------------------------------------------------------------- /persistent_workbench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/persistent_workbench.png -------------------------------------------------------------------------------- /pomopersistentfolder.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/pomopersistentfolder.GIF -------------------------------------------------------------------------------- /pomoworkbench.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/pomoworkbench.GIF -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/rollup.config.js -------------------------------------------------------------------------------- /samplellog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/samplellog.png -------------------------------------------------------------------------------- /savepomoworkbench.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/savepomoworkbench.GIF -------------------------------------------------------------------------------- /sortableworkbench.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/sortableworkbench.gif -------------------------------------------------------------------------------- /src/audio_urls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/src/audio_urls.ts -------------------------------------------------------------------------------- /src/current_progress_modal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/src/current_progress_modal.ts -------------------------------------------------------------------------------- /src/custom_time_modal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/src/custom_time_modal.ts -------------------------------------------------------------------------------- /src/extend_modal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/src/extend_modal.ts -------------------------------------------------------------------------------- /src/file_utility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/src/file_utility.ts -------------------------------------------------------------------------------- /src/flexipomosuggesters/Error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/src/flexipomosuggesters/Error.ts -------------------------------------------------------------------------------- /src/flexipomosuggesters/FileSuggester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/src/flexipomosuggesters/FileSuggester.ts -------------------------------------------------------------------------------- /src/flexipomosuggesters/FolderSuggester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/src/flexipomosuggesters/FolderSuggester.ts -------------------------------------------------------------------------------- /src/flexipomosuggesters/LoadingSuggester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/src/flexipomosuggesters/LoadingSuggester.ts -------------------------------------------------------------------------------- /src/flexipomosuggesters/Log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/src/flexipomosuggesters/Log.ts -------------------------------------------------------------------------------- /src/flexipomosuggesters/SavingSuggester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/src/flexipomosuggesters/SavingSuggester.ts -------------------------------------------------------------------------------- /src/flexipomosuggesters/Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/src/flexipomosuggesters/Utils.ts -------------------------------------------------------------------------------- /src/flexipomosuggesters/app-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/src/flexipomosuggesters/app-helper.ts -------------------------------------------------------------------------------- /src/flexipomosuggesters/collection-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/src/flexipomosuggesters/collection-helper.ts -------------------------------------------------------------------------------- /src/flexipomosuggesters/path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/src/flexipomosuggesters/path.ts -------------------------------------------------------------------------------- /src/flexipomosuggesters/suggest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/src/flexipomosuggesters/suggest.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/parse_utility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/src/parse_utility.ts -------------------------------------------------------------------------------- /src/pomo_task_item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/src/pomo_task_item.ts -------------------------------------------------------------------------------- /src/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/src/settings.ts -------------------------------------------------------------------------------- /src/timer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/src/timer.ts -------------------------------------------------------------------------------- /src/white_noise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/src/white_noise.ts -------------------------------------------------------------------------------- /src/workbench.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/src/workbench.ts -------------------------------------------------------------------------------- /src/workbench_data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/src/workbench_data.ts -------------------------------------------------------------------------------- /src/workbench_view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/src/workbench_view.ts -------------------------------------------------------------------------------- /src/workitem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/src/workitem.ts -------------------------------------------------------------------------------- /startpomo.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/startpomo.GIF -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/styles.css -------------------------------------------------------------------------------- /timer_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/timer_screenshot.png -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/tsconfig.json -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- 1 | { 2 | "0.0.3": "0.9.12" 3 | } 4 | -------------------------------------------------------------------------------- /workbench3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grassbl8d/flexible-pomo-obsidian/HEAD/workbench3.png --------------------------------------------------------------------------------