├── .babelrc ├── .chglog ├── CHANGELOG.tpl.md ├── RELEASE.tpl.md ├── config.yml └── release.yml ├── .electron-vue ├── build.js ├── dev-client.js ├── dev-runner.js ├── webpack.main.config.js ├── webpack.renderer.config.js └── webpack.web.config.js ├── .eslintignore ├── .eslintrc.js ├── .github ├── images │ ├── pomotroid-screens.png │ ├── pomotroid-title.png │ └── pomotroid_themes-preview--914x219.png └── workflows │ ├── build.yml │ └── codeql-analysis.yml ├── .gitignore ├── .prettierrc ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── Taskfile.yml ├── appveyor.yml ├── dist ├── electron │ └── .gitkeep └── web │ └── .gitkeep ├── docs └── themes │ ├── images │ ├── andromeda_01.png │ ├── andromeda_02.png │ ├── ayu_01.png │ ├── ayu_02.png │ ├── city-lights_01.png │ ├── city-lights_02.png │ ├── dracula_01.png │ ├── dracula_02.png │ ├── dva_01.png │ ├── dva_02.png │ ├── github_01.png │ ├── github_02.png │ ├── graphite_01.png │ ├── graphite_02.png │ ├── gruvbox_01.png │ ├── gruvbox_02.png │ ├── monokai_01.png │ ├── monokai_02.png │ ├── nord_01.png │ ├── nord_02.png │ ├── one-dark-pro_01.png │ ├── one-dark-pro_02.png │ ├── pomotroid_01.png │ ├── pomotroid_02.png │ ├── popping-and-locking_01.png │ ├── popping-and-locking_02.png │ ├── solarized-light_01.png │ ├── solarized-light_02.png │ ├── spandex_01.png │ ├── spandex_02.png │ ├── synthwave_01.png │ ├── synthwave_02.png │ ├── tokyo-night-storm_01.png │ └── tokyo-night-storm_02.png │ ├── theme-template.json │ └── themes.md ├── misc └── icons │ ├── pomotroid-icon--0.1.ai │ ├── pomotroid-icon--0.2.ai │ └── pomotroid-icon--0.3.ai ├── package.json ├── pomotroid.json ├── src ├── index.ejs ├── main │ ├── index.dev.js │ ├── index.js │ └── sockets.js └── renderer │ ├── App.vue │ ├── assets │ ├── fonts │ │ ├── Lato-Regular.ttf │ │ └── RobotoMono-Light.ttf │ └── stylesheets │ │ ├── _animations.scss │ │ ├── _base.scss │ │ ├── _scrollbar.scss │ │ ├── _slider.scss │ │ ├── _variables.scss │ │ └── main.scss │ ├── components │ ├── Audio.vue │ ├── ShortcutInput.vue │ ├── Titlebar.vue │ ├── TrayIcon.vue │ ├── drawer │ │ ├── Drawer-about.vue │ │ ├── Drawer-menu.vue │ │ ├── Drawer-settings.vue │ │ ├── Drawer-theme.vue │ │ ├── Drawer-timer.vue │ │ └── Drawer.vue │ ├── notification │ │ ├── Notification-win.vue │ │ └── Notification.vue │ └── timer │ │ ├── Timer-controller.vue │ │ ├── Timer-dial.vue │ │ ├── Timer-footer.vue │ │ └── Timer.vue │ ├── main.js │ ├── store │ ├── index.js │ └── modules │ │ ├── Timer.js │ │ ├── View.js │ │ └── index.js │ └── utils │ ├── EventBus.js │ ├── LocalStore.js │ ├── Themer.js │ ├── Timer.js │ ├── logger.js │ └── timer.worker.js └── static ├── audio ├── alert-long-break.mp3 ├── alert-short-break.mp3 ├── alert-work.mp3 └── tick.mp3 ├── icon--blue.png ├── icon--green.png ├── icon--macos--tray.png ├── icon--macos.png ├── icon.png └── themes ├── andromeda.json ├── ayu.json ├── city-lights.json ├── dracula.json ├── dva.json ├── github.json ├── graphite.json ├── gruvbox.json ├── monokai.json ├── nord.json ├── one-dark.json ├── pomotroid.json ├── popping-and-locking.json ├── solarized-light.json ├── spandex.json ├── synthwave.json └── tokyo-night.json /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/.babelrc -------------------------------------------------------------------------------- /.chglog/CHANGELOG.tpl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/.chglog/CHANGELOG.tpl.md -------------------------------------------------------------------------------- /.chglog/RELEASE.tpl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/.chglog/RELEASE.tpl.md -------------------------------------------------------------------------------- /.chglog/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/.chglog/config.yml -------------------------------------------------------------------------------- /.chglog/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/.chglog/release.yml -------------------------------------------------------------------------------- /.electron-vue/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/.electron-vue/build.js -------------------------------------------------------------------------------- /.electron-vue/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/.electron-vue/dev-client.js -------------------------------------------------------------------------------- /.electron-vue/dev-runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/.electron-vue/dev-runner.js -------------------------------------------------------------------------------- /.electron-vue/webpack.main.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/.electron-vue/webpack.main.config.js -------------------------------------------------------------------------------- /.electron-vue/webpack.renderer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/.electron-vue/webpack.renderer.config.js -------------------------------------------------------------------------------- /.electron-vue/webpack.web.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/.electron-vue/webpack.web.config.js -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/images/pomotroid-screens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/.github/images/pomotroid-screens.png -------------------------------------------------------------------------------- /.github/images/pomotroid-title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/.github/images/pomotroid-title.png -------------------------------------------------------------------------------- /.github/images/pomotroid_themes-preview--914x219.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/.github/images/pomotroid_themes-preview--914x219.png -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/README.md -------------------------------------------------------------------------------- /Taskfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/Taskfile.yml -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/appveyor.yml -------------------------------------------------------------------------------- /dist/electron/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/web/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/themes/images/andromeda_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/docs/themes/images/andromeda_01.png -------------------------------------------------------------------------------- /docs/themes/images/andromeda_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/docs/themes/images/andromeda_02.png -------------------------------------------------------------------------------- /docs/themes/images/ayu_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/docs/themes/images/ayu_01.png -------------------------------------------------------------------------------- /docs/themes/images/ayu_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/docs/themes/images/ayu_02.png -------------------------------------------------------------------------------- /docs/themes/images/city-lights_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/docs/themes/images/city-lights_01.png -------------------------------------------------------------------------------- /docs/themes/images/city-lights_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/docs/themes/images/city-lights_02.png -------------------------------------------------------------------------------- /docs/themes/images/dracula_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/docs/themes/images/dracula_01.png -------------------------------------------------------------------------------- /docs/themes/images/dracula_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/docs/themes/images/dracula_02.png -------------------------------------------------------------------------------- /docs/themes/images/dva_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/docs/themes/images/dva_01.png -------------------------------------------------------------------------------- /docs/themes/images/dva_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/docs/themes/images/dva_02.png -------------------------------------------------------------------------------- /docs/themes/images/github_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/docs/themes/images/github_01.png -------------------------------------------------------------------------------- /docs/themes/images/github_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/docs/themes/images/github_02.png -------------------------------------------------------------------------------- /docs/themes/images/graphite_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/docs/themes/images/graphite_01.png -------------------------------------------------------------------------------- /docs/themes/images/graphite_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/docs/themes/images/graphite_02.png -------------------------------------------------------------------------------- /docs/themes/images/gruvbox_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/docs/themes/images/gruvbox_01.png -------------------------------------------------------------------------------- /docs/themes/images/gruvbox_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/docs/themes/images/gruvbox_02.png -------------------------------------------------------------------------------- /docs/themes/images/monokai_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/docs/themes/images/monokai_01.png -------------------------------------------------------------------------------- /docs/themes/images/monokai_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/docs/themes/images/monokai_02.png -------------------------------------------------------------------------------- /docs/themes/images/nord_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/docs/themes/images/nord_01.png -------------------------------------------------------------------------------- /docs/themes/images/nord_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/docs/themes/images/nord_02.png -------------------------------------------------------------------------------- /docs/themes/images/one-dark-pro_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/docs/themes/images/one-dark-pro_01.png -------------------------------------------------------------------------------- /docs/themes/images/one-dark-pro_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/docs/themes/images/one-dark-pro_02.png -------------------------------------------------------------------------------- /docs/themes/images/pomotroid_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/docs/themes/images/pomotroid_01.png -------------------------------------------------------------------------------- /docs/themes/images/pomotroid_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/docs/themes/images/pomotroid_02.png -------------------------------------------------------------------------------- /docs/themes/images/popping-and-locking_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/docs/themes/images/popping-and-locking_01.png -------------------------------------------------------------------------------- /docs/themes/images/popping-and-locking_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/docs/themes/images/popping-and-locking_02.png -------------------------------------------------------------------------------- /docs/themes/images/solarized-light_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/docs/themes/images/solarized-light_01.png -------------------------------------------------------------------------------- /docs/themes/images/solarized-light_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/docs/themes/images/solarized-light_02.png -------------------------------------------------------------------------------- /docs/themes/images/spandex_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/docs/themes/images/spandex_01.png -------------------------------------------------------------------------------- /docs/themes/images/spandex_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/docs/themes/images/spandex_02.png -------------------------------------------------------------------------------- /docs/themes/images/synthwave_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/docs/themes/images/synthwave_01.png -------------------------------------------------------------------------------- /docs/themes/images/synthwave_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/docs/themes/images/synthwave_02.png -------------------------------------------------------------------------------- /docs/themes/images/tokyo-night-storm_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/docs/themes/images/tokyo-night-storm_01.png -------------------------------------------------------------------------------- /docs/themes/images/tokyo-night-storm_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/docs/themes/images/tokyo-night-storm_02.png -------------------------------------------------------------------------------- /docs/themes/theme-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/docs/themes/theme-template.json -------------------------------------------------------------------------------- /docs/themes/themes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/docs/themes/themes.md -------------------------------------------------------------------------------- /misc/icons/pomotroid-icon--0.1.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/misc/icons/pomotroid-icon--0.1.ai -------------------------------------------------------------------------------- /misc/icons/pomotroid-icon--0.2.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/misc/icons/pomotroid-icon--0.2.ai -------------------------------------------------------------------------------- /misc/icons/pomotroid-icon--0.3.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/misc/icons/pomotroid-icon--0.3.ai -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/package.json -------------------------------------------------------------------------------- /pomotroid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/pomotroid.json -------------------------------------------------------------------------------- /src/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/src/index.ejs -------------------------------------------------------------------------------- /src/main/index.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/src/main/index.dev.js -------------------------------------------------------------------------------- /src/main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/src/main/index.js -------------------------------------------------------------------------------- /src/main/sockets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/src/main/sockets.js -------------------------------------------------------------------------------- /src/renderer/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/src/renderer/App.vue -------------------------------------------------------------------------------- /src/renderer/assets/fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/src/renderer/assets/fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /src/renderer/assets/fonts/RobotoMono-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/src/renderer/assets/fonts/RobotoMono-Light.ttf -------------------------------------------------------------------------------- /src/renderer/assets/stylesheets/_animations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/src/renderer/assets/stylesheets/_animations.scss -------------------------------------------------------------------------------- /src/renderer/assets/stylesheets/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/src/renderer/assets/stylesheets/_base.scss -------------------------------------------------------------------------------- /src/renderer/assets/stylesheets/_scrollbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/src/renderer/assets/stylesheets/_scrollbar.scss -------------------------------------------------------------------------------- /src/renderer/assets/stylesheets/_slider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/src/renderer/assets/stylesheets/_slider.scss -------------------------------------------------------------------------------- /src/renderer/assets/stylesheets/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/src/renderer/assets/stylesheets/_variables.scss -------------------------------------------------------------------------------- /src/renderer/assets/stylesheets/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/src/renderer/assets/stylesheets/main.scss -------------------------------------------------------------------------------- /src/renderer/components/Audio.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/src/renderer/components/Audio.vue -------------------------------------------------------------------------------- /src/renderer/components/ShortcutInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/src/renderer/components/ShortcutInput.vue -------------------------------------------------------------------------------- /src/renderer/components/Titlebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/src/renderer/components/Titlebar.vue -------------------------------------------------------------------------------- /src/renderer/components/TrayIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/src/renderer/components/TrayIcon.vue -------------------------------------------------------------------------------- /src/renderer/components/drawer/Drawer-about.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/src/renderer/components/drawer/Drawer-about.vue -------------------------------------------------------------------------------- /src/renderer/components/drawer/Drawer-menu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/src/renderer/components/drawer/Drawer-menu.vue -------------------------------------------------------------------------------- /src/renderer/components/drawer/Drawer-settings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/src/renderer/components/drawer/Drawer-settings.vue -------------------------------------------------------------------------------- /src/renderer/components/drawer/Drawer-theme.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/src/renderer/components/drawer/Drawer-theme.vue -------------------------------------------------------------------------------- /src/renderer/components/drawer/Drawer-timer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/src/renderer/components/drawer/Drawer-timer.vue -------------------------------------------------------------------------------- /src/renderer/components/drawer/Drawer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/src/renderer/components/drawer/Drawer.vue -------------------------------------------------------------------------------- /src/renderer/components/notification/Notification-win.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/src/renderer/components/notification/Notification-win.vue -------------------------------------------------------------------------------- /src/renderer/components/notification/Notification.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/src/renderer/components/notification/Notification.vue -------------------------------------------------------------------------------- /src/renderer/components/timer/Timer-controller.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/src/renderer/components/timer/Timer-controller.vue -------------------------------------------------------------------------------- /src/renderer/components/timer/Timer-dial.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/src/renderer/components/timer/Timer-dial.vue -------------------------------------------------------------------------------- /src/renderer/components/timer/Timer-footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/src/renderer/components/timer/Timer-footer.vue -------------------------------------------------------------------------------- /src/renderer/components/timer/Timer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/src/renderer/components/timer/Timer.vue -------------------------------------------------------------------------------- /src/renderer/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/src/renderer/main.js -------------------------------------------------------------------------------- /src/renderer/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/src/renderer/store/index.js -------------------------------------------------------------------------------- /src/renderer/store/modules/Timer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/src/renderer/store/modules/Timer.js -------------------------------------------------------------------------------- /src/renderer/store/modules/View.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/src/renderer/store/modules/View.js -------------------------------------------------------------------------------- /src/renderer/store/modules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/src/renderer/store/modules/index.js -------------------------------------------------------------------------------- /src/renderer/utils/EventBus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/src/renderer/utils/EventBus.js -------------------------------------------------------------------------------- /src/renderer/utils/LocalStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/src/renderer/utils/LocalStore.js -------------------------------------------------------------------------------- /src/renderer/utils/Themer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/src/renderer/utils/Themer.js -------------------------------------------------------------------------------- /src/renderer/utils/Timer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/src/renderer/utils/Timer.js -------------------------------------------------------------------------------- /src/renderer/utils/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/src/renderer/utils/logger.js -------------------------------------------------------------------------------- /src/renderer/utils/timer.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/src/renderer/utils/timer.worker.js -------------------------------------------------------------------------------- /static/audio/alert-long-break.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/static/audio/alert-long-break.mp3 -------------------------------------------------------------------------------- /static/audio/alert-short-break.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/static/audio/alert-short-break.mp3 -------------------------------------------------------------------------------- /static/audio/alert-work.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/static/audio/alert-work.mp3 -------------------------------------------------------------------------------- /static/audio/tick.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/static/audio/tick.mp3 -------------------------------------------------------------------------------- /static/icon--blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/static/icon--blue.png -------------------------------------------------------------------------------- /static/icon--green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/static/icon--green.png -------------------------------------------------------------------------------- /static/icon--macos--tray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/static/icon--macos--tray.png -------------------------------------------------------------------------------- /static/icon--macos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/static/icon--macos.png -------------------------------------------------------------------------------- /static/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/static/icon.png -------------------------------------------------------------------------------- /static/themes/andromeda.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/static/themes/andromeda.json -------------------------------------------------------------------------------- /static/themes/ayu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/static/themes/ayu.json -------------------------------------------------------------------------------- /static/themes/city-lights.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/static/themes/city-lights.json -------------------------------------------------------------------------------- /static/themes/dracula.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/static/themes/dracula.json -------------------------------------------------------------------------------- /static/themes/dva.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/static/themes/dva.json -------------------------------------------------------------------------------- /static/themes/github.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/static/themes/github.json -------------------------------------------------------------------------------- /static/themes/graphite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/static/themes/graphite.json -------------------------------------------------------------------------------- /static/themes/gruvbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/static/themes/gruvbox.json -------------------------------------------------------------------------------- /static/themes/monokai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/static/themes/monokai.json -------------------------------------------------------------------------------- /static/themes/nord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/static/themes/nord.json -------------------------------------------------------------------------------- /static/themes/one-dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/static/themes/one-dark.json -------------------------------------------------------------------------------- /static/themes/pomotroid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/static/themes/pomotroid.json -------------------------------------------------------------------------------- /static/themes/popping-and-locking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/static/themes/popping-and-locking.json -------------------------------------------------------------------------------- /static/themes/solarized-light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/static/themes/solarized-light.json -------------------------------------------------------------------------------- /static/themes/spandex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/static/themes/spandex.json -------------------------------------------------------------------------------- /static/themes/synthwave.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/static/themes/synthwave.json -------------------------------------------------------------------------------- /static/themes/tokyo-night.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Splode/pomotroid/HEAD/static/themes/tokyo-night.json --------------------------------------------------------------------------------