├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── assets │ ├── boosters │ │ ├── Don't Break The Chain.jpg │ │ ├── Luxafor ANC Headphones.jpg │ │ ├── Luxafor Bluetooth.jpg │ │ ├── Luxafor Cube.jpg │ │ ├── Luxafor Flag.jpg │ │ ├── Luxafor Pomodoro Timer.jpg │ │ ├── Luxafor Switch.jpg │ │ └── Office Hero Planner.jpg │ ├── companies │ │ ├── Butterball.png │ │ ├── bank_of_america.jpg │ │ ├── etsy.jpg │ │ ├── facebook.jpg │ │ ├── google.jpg │ │ ├── hulu.jpg │ │ ├── ingram.jpg │ │ ├── logitech.jpg │ │ ├── microsoft.png │ │ ├── thales.jpg │ │ └── youtube.jpg │ ├── logo.png │ └── preview.png ├── dependabot.yml └── workflows │ ├── build-tauri.yml │ ├── build.yml │ ├── codeql-analysis.yml │ ├── pre-commit-check.yml │ ├── release-please.yml │ └── website-deploy.yml ├── .gitignore ├── .nvmrc ├── .pre-commit-config.yaml ├── .prettierignore ├── .prettierrc ├── .release-please-manifest.json ├── .travis.yml ├── .vscode └── settings.json ├── .yarn └── install-state.gz ├── .yarnrc.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── app ├── electron │ ├── .gitignore │ ├── electron-builder │ │ └── afterSign.js │ ├── jest.config.js │ ├── nodemon.json │ ├── package.json │ ├── src │ │ ├── assets │ │ │ ├── logo-dark.ico │ │ │ ├── logo-dark.png │ │ │ ├── logo-dark256x256.png │ │ │ ├── logo-dark@2x.png │ │ │ ├── notification-dark.png │ │ │ ├── tray-dark-lb.png │ │ │ ├── tray-dark-sb.png │ │ │ ├── tray-dark.png │ │ │ ├── tray-lb.png │ │ │ ├── tray-sb.png │ │ │ └── tray.png │ │ ├── helpers │ │ │ ├── autoUpdater.ts │ │ │ ├── blockShortcutKeys.ts │ │ │ ├── contextMenu.ts │ │ │ ├── discordRPC.ts │ │ │ ├── getFromStorage.ts │ │ │ ├── getIcon.ts │ │ │ ├── getTrayIcon.ts │ │ │ ├── globalShortcuts.ts │ │ │ ├── index.ts │ │ │ ├── isMacOS.ts │ │ │ └── isWindow.ts │ │ ├── lifecycleEventHandlers │ │ │ ├── __tests__ │ │ │ │ └── fullScreenBreak.test.ts │ │ │ └── fullScreenBreak.ts │ │ ├── main.ts │ │ ├── preload.ts │ │ └── store.ts │ └── tsconfig.json ├── renderer │ ├── .env │ ├── .gitignore │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ └── index.html │ ├── src │ │ ├── App.tsx │ │ ├── assets │ │ │ ├── audios │ │ │ │ ├── break-finished.wav │ │ │ │ ├── focus-finished.wav │ │ │ │ ├── notification-bell.wav │ │ │ │ ├── session-completed.wav │ │ │ │ ├── sixty-seconds-left.wav │ │ │ │ ├── special-break-started.wav │ │ │ │ ├── thirty-seconds-left.wav │ │ │ │ └── warning-bell.wav │ │ │ ├── fonts │ │ │ │ ├── noto-sans │ │ │ │ │ ├── NotoSans300.woff │ │ │ │ │ ├── NotoSans400.woff │ │ │ │ │ └── NotoSans500.woff │ │ │ │ └── typo-round │ │ │ │ │ ├── TypoRound300.woff │ │ │ │ │ └── TypoRound400.woff │ │ │ ├── icons │ │ │ │ ├── add.svg │ │ │ │ ├── alert.svg │ │ │ │ ├── bonfire.svg │ │ │ │ ├── chevron-down.svg │ │ │ │ ├── close.svg │ │ │ │ ├── config.svg │ │ │ │ ├── expand.svg │ │ │ │ ├── external.svg │ │ │ │ ├── fast-food.svg │ │ │ │ ├── index.ts │ │ │ │ ├── laptop.svg │ │ │ │ ├── mug.svg │ │ │ │ ├── nap.svg │ │ │ │ ├── option-x.svg │ │ │ │ ├── option-y.svg │ │ │ │ ├── pause.svg │ │ │ │ ├── pencil.svg │ │ │ │ ├── play.svg │ │ │ │ ├── progress.svg │ │ │ │ ├── refresh.svg │ │ │ │ ├── reset.svg │ │ │ │ ├── save.svg │ │ │ │ ├── settings.svg │ │ │ │ ├── skip.svg │ │ │ │ ├── task.svg │ │ │ │ ├── timer.svg │ │ │ │ ├── trash.svg │ │ │ │ ├── volume-mute.svg │ │ │ │ └── volume-on.svg │ │ │ └── logos │ │ │ │ ├── logo-dark.ico │ │ │ │ ├── logo-dark.png │ │ │ │ ├── logo-dark@2x.png │ │ │ │ ├── notification-dark.png │ │ │ │ ├── tray-dark-lb.png │ │ │ │ ├── tray-dark-sb.png │ │ │ │ ├── tray-dark.png │ │ │ │ ├── tray-lb.png │ │ │ │ ├── tray-sb.png │ │ │ │ └── tray.png │ │ ├── components │ │ │ ├── Alert.tsx │ │ │ ├── Checkbox.tsx │ │ │ ├── Collapse.tsx │ │ │ ├── Dimmer.tsx │ │ │ ├── Header.tsx │ │ │ ├── Help.tsx │ │ │ ├── Layout.tsx │ │ │ ├── NavNotify.tsx │ │ │ ├── Navigation.tsx │ │ │ ├── Popper.tsx │ │ │ ├── Portal.tsx │ │ │ ├── Preloader.tsx │ │ │ ├── Radio.tsx │ │ │ ├── RangeLabel.tsx │ │ │ ├── RangeSlider.tsx │ │ │ ├── SVG.tsx │ │ │ ├── Shortcut.tsx │ │ │ ├── Time.tsx │ │ │ ├── Titlebar.tsx │ │ │ ├── Toggler.tsx │ │ │ ├── TraySVG.tsx │ │ │ ├── Updater.tsx │ │ │ └── index.ts │ │ ├── config.ts │ │ ├── contexts │ │ │ ├── ConnnectorContext.tsx │ │ │ ├── CounterContext.tsx │ │ │ ├── InvokeConnector.tsx │ │ │ ├── ThemeContext.tsx │ │ │ ├── connectors │ │ │ │ ├── ElectronConnector.tsx │ │ │ │ └── TauriConnector.tsx │ │ │ └── index.ts │ │ ├── extensions │ │ │ ├── index.ts │ │ │ ├── string.extension.ts │ │ │ └── window.extension.ts │ │ ├── hooks │ │ │ ├── index.ts │ │ │ ├── storeHooks.ts │ │ │ ├── useInput.ts │ │ │ ├── useInputHandler.ts │ │ │ ├── useNotification.ts │ │ │ ├── useRippleEffect.ts │ │ │ ├── useTargetOutside.ts │ │ │ ├── useTime.ts │ │ │ └── useTrayIconUpdates.tsx │ │ ├── index.css │ │ ├── index.tsx │ │ ├── react-app-env.d.ts │ │ ├── routes │ │ │ ├── Config │ │ │ │ ├── ConfigHeader.tsx │ │ │ │ ├── ConfigSlider.tsx │ │ │ │ ├── SliderSection.tsx │ │ │ │ ├── SpecialBreaks.tsx │ │ │ │ ├── SpecialField.tsx │ │ │ │ └── index.tsx │ │ │ ├── Settings │ │ │ │ ├── FeatureSection.tsx │ │ │ │ ├── HelpSection.tsx │ │ │ │ ├── SettingHeader.tsx │ │ │ │ ├── SettingSection.tsx │ │ │ │ ├── ShortcutSection.tsx │ │ │ │ ├── StickySection.tsx │ │ │ │ └── index.tsx │ │ │ ├── Tasks │ │ │ │ ├── TaskCard.tsx │ │ │ │ ├── TaskDetails │ │ │ │ │ ├── MDPreviewer.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── TaskFormButton.tsx │ │ │ │ ├── TaskHeader.tsx │ │ │ │ ├── TaskInnerList.tsx │ │ │ │ ├── TaskList.tsx │ │ │ │ └── index.tsx │ │ │ ├── Timer │ │ │ │ ├── Control │ │ │ │ │ ├── CompactModeButton.tsx │ │ │ │ │ ├── Control.tsx │ │ │ │ │ ├── PlayButton.tsx │ │ │ │ │ ├── ResetButton.tsx │ │ │ │ │ ├── Sessions.tsx │ │ │ │ │ ├── SkipButton.tsx │ │ │ │ │ ├── VolumeButton.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── Counter │ │ │ │ │ ├── Counter.tsx │ │ │ │ │ ├── CounterLabel.tsx │ │ │ │ │ ├── CounterTimer.tsx │ │ │ │ │ ├── CounterType.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── PriorityCard.tsx │ │ │ │ └── index.tsx │ │ │ └── index.ts │ │ ├── store │ │ │ ├── config │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── index.ts │ │ │ │ └── types.ts │ │ │ ├── index.ts │ │ │ ├── settings │ │ │ │ ├── defaultSettings.ts │ │ │ │ ├── index.ts │ │ │ │ └── types.ts │ │ │ ├── store.ts │ │ │ ├── tasks │ │ │ │ ├── index.ts │ │ │ │ ├── types.ts │ │ │ │ └── utils │ │ │ │ │ ├── task.ts │ │ │ │ │ └── tasklist.ts │ │ │ ├── timer │ │ │ │ ├── defaultTimer.ts │ │ │ │ ├── index.ts │ │ │ │ └── types.ts │ │ │ └── update │ │ │ │ └── index.ts │ │ ├── styles │ │ │ ├── components │ │ │ │ ├── alert.ts │ │ │ │ ├── button.ts │ │ │ │ ├── checkbox.ts │ │ │ │ ├── collapse.ts │ │ │ │ ├── dimmer.ts │ │ │ │ ├── header.ts │ │ │ │ ├── help.ts │ │ │ │ ├── index.ts │ │ │ │ ├── input.ts │ │ │ │ ├── layout.ts │ │ │ │ ├── loaders.ts │ │ │ │ ├── navigation.ts │ │ │ │ ├── popper.ts │ │ │ │ ├── range.ts │ │ │ │ ├── shortcuts.ts │ │ │ │ ├── svg.ts │ │ │ │ ├── textarea.ts │ │ │ │ ├── time.ts │ │ │ │ ├── titlebar.ts │ │ │ │ └── toggler.ts │ │ │ ├── global.ts │ │ │ ├── index.ts │ │ │ ├── mixins.ts │ │ │ ├── routes │ │ │ │ ├── config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── settings.ts │ │ │ │ ├── tasks │ │ │ │ │ ├── card.ts │ │ │ │ │ ├── details.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── options.ts │ │ │ │ │ └── tasks.ts │ │ │ │ └── timer │ │ │ │ │ ├── control.ts │ │ │ │ │ ├── counter.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── timer.ts │ │ │ └── themes.ts │ │ ├── typings.d.ts │ │ └── utils │ │ │ ├── detectOS.ts │ │ │ ├── encodeSvg.ts │ │ │ ├── getShortcutFromEvent.ts │ │ │ ├── index.ts │ │ │ ├── isBrowser.ts │ │ │ ├── isEqualToOne.ts │ │ │ ├── isObjectEmpty.ts │ │ │ ├── isPrefferedDark.ts │ │ │ ├── padNumber.ts │ │ │ ├── parseTime.ts │ │ │ └── storage.ts │ ├── tsconfig.json │ └── tts-generator.js ├── shareables │ ├── .gitignore │ ├── package.json │ ├── rollup.config.js │ ├── src │ │ └── index.ts │ └── tsconfig.json └── tauri │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.MD │ ├── build.rs │ ├── icons │ ├── 128x128.png │ ├── 128x128@2x.png │ ├── 32x32.png │ ├── Square107x107Logo.png │ ├── Square142x142Logo.png │ ├── Square150x150Logo.png │ ├── Square284x284Logo.png │ ├── Square30x30Logo.png │ ├── Square310x310Logo.png │ ├── Square44x44Logo.png │ ├── Square71x71Logo.png │ ├── Square89x89Logo.png │ ├── StoreLogo.png │ ├── icon.icns │ ├── icon.ico │ └── icon.png │ ├── installer │ ├── nsis │ │ ├── header.bmp │ │ └── sidebar.bmp │ └── wix │ │ ├── banner.bmp │ │ └── dialog.bmp │ ├── release-prep │ └── release-prep.js │ ├── release.conf.json │ ├── src │ ├── commands.rs │ ├── global_shortcuts.rs │ ├── main.rs │ ├── system_tray.rs │ └── updater.rs │ ├── tauri.conf.json │ └── util │ └── cargo-version-updater.js ├── lerna.json ├── package.json ├── release-please-config.json ├── snap ├── gui │ ├── icon.png │ └── pomatez.desktop └── snapcraft.yaml ├── tsconfig.json ├── website ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── README.md ├── assets │ ├── icons │ │ ├── apple.svg │ │ ├── arrow-back.svg │ │ ├── download.svg │ │ ├── github.svg │ │ ├── linux.svg │ │ ├── moon.svg │ │ ├── pomatez.svg │ │ ├── snap-store.svg │ │ ├── sunny.svg │ │ ├── tux.svg │ │ └── windows.svg │ └── images │ │ ├── config-dark.PNG │ │ ├── config-light.PNG │ │ ├── logo-dark.png │ │ ├── logo-light.png │ │ ├── long-break-dark.PNG │ │ ├── long-break-light.PNG │ │ ├── preview-dark.png │ │ ├── preview-light.png │ │ ├── settings-dark.PNG │ │ ├── settings-light.PNG │ │ ├── short-break-dark.PNG │ │ ├── short-break-light.PNG │ │ ├── tasks-dark.PNG │ │ ├── tasks-light.PNG │ │ ├── watermark-left.svg │ │ ├── watermark-right.svg │ │ ├── work-time-dark.PNG │ │ └── work-time-light.PNG ├── content │ ├── download.md │ ├── features.md │ ├── hero.md │ └── roadmap.md ├── gatsby-config.ts ├── package.json ├── src │ ├── components │ │ ├── footer.tsx │ │ ├── header.tsx │ │ ├── index.ts │ │ ├── logo.tsx │ │ ├── navigation │ │ │ ├── index.ts │ │ │ ├── nav-link.tsx │ │ │ └── navbar.tsx │ │ ├── page │ │ │ ├── head.tsx │ │ │ ├── index.ts │ │ │ └── layout.tsx │ │ ├── sidebar.tsx │ │ └── svg.tsx │ ├── config.ts │ ├── context │ │ ├── index.ts │ │ ├── nav-context.tsx │ │ ├── theme-context.tsx │ │ └── viewport-context.tsx │ ├── hooks │ │ ├── index.ts │ │ ├── use-context-provider.ts │ │ ├── use-is-browser.ts │ │ └── use-target-outside.ts │ ├── pages │ │ ├── 404.tsx │ │ └── index.tsx │ ├── queries │ │ ├── download.ts │ │ ├── features.ts │ │ ├── hero.ts │ │ ├── index.ts │ │ └── roadmap.ts │ ├── sections │ │ ├── download.tsx │ │ ├── features.tsx │ │ ├── hero.tsx │ │ ├── index.ts │ │ └── roadmap.tsx │ ├── styles │ │ ├── animate.ts │ │ ├── components │ │ │ ├── button.ts │ │ │ ├── footer.ts │ │ │ ├── header.ts │ │ │ ├── index.ts │ │ │ ├── layout.ts │ │ │ ├── nav.ts │ │ │ └── sidebar.ts │ │ ├── global.ts │ │ ├── index.ts │ │ ├── media.ts │ │ ├── mixins.ts │ │ ├── sections │ │ │ ├── 404.ts │ │ │ ├── download.ts │ │ │ ├── features.ts │ │ │ ├── hero.ts │ │ │ ├── index.ts │ │ │ └── roadmap.ts │ │ └── themes.ts │ ├── types │ │ ├── image.ts │ │ ├── index.ts │ │ ├── markdown.ts │ │ ├── meta.ts │ │ └── typings.d.ts │ └── utils │ │ ├── detectOS.ts │ │ ├── index.ts │ │ ├── isPreferredDark.ts │ │ ├── isSSR.ts │ │ ├── storage.ts │ │ └── styled │ │ └── media.ts ├── tsconfig.json └── yarn.lock └── yarn.lock /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/assets/boosters/Don't Break The Chain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/.github/assets/boosters/Don't Break The Chain.jpg -------------------------------------------------------------------------------- /.github/assets/boosters/Luxafor ANC Headphones.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/.github/assets/boosters/Luxafor ANC Headphones.jpg -------------------------------------------------------------------------------- /.github/assets/boosters/Luxafor Bluetooth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/.github/assets/boosters/Luxafor Bluetooth.jpg -------------------------------------------------------------------------------- /.github/assets/boosters/Luxafor Cube.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/.github/assets/boosters/Luxafor Cube.jpg -------------------------------------------------------------------------------- /.github/assets/boosters/Luxafor Flag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/.github/assets/boosters/Luxafor Flag.jpg -------------------------------------------------------------------------------- /.github/assets/boosters/Luxafor Pomodoro Timer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/.github/assets/boosters/Luxafor Pomodoro Timer.jpg -------------------------------------------------------------------------------- /.github/assets/boosters/Luxafor Switch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/.github/assets/boosters/Luxafor Switch.jpg -------------------------------------------------------------------------------- /.github/assets/boosters/Office Hero Planner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/.github/assets/boosters/Office Hero Planner.jpg -------------------------------------------------------------------------------- /.github/assets/companies/Butterball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/.github/assets/companies/Butterball.png -------------------------------------------------------------------------------- /.github/assets/companies/bank_of_america.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/.github/assets/companies/bank_of_america.jpg -------------------------------------------------------------------------------- /.github/assets/companies/etsy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/.github/assets/companies/etsy.jpg -------------------------------------------------------------------------------- /.github/assets/companies/facebook.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/.github/assets/companies/facebook.jpg -------------------------------------------------------------------------------- /.github/assets/companies/google.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/.github/assets/companies/google.jpg -------------------------------------------------------------------------------- /.github/assets/companies/hulu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/.github/assets/companies/hulu.jpg -------------------------------------------------------------------------------- /.github/assets/companies/ingram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/.github/assets/companies/ingram.jpg -------------------------------------------------------------------------------- /.github/assets/companies/logitech.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/.github/assets/companies/logitech.jpg -------------------------------------------------------------------------------- /.github/assets/companies/microsoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/.github/assets/companies/microsoft.png -------------------------------------------------------------------------------- /.github/assets/companies/thales.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/.github/assets/companies/thales.jpg -------------------------------------------------------------------------------- /.github/assets/companies/youtube.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/.github/assets/companies/youtube.jpg -------------------------------------------------------------------------------- /.github/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/.github/assets/logo.png -------------------------------------------------------------------------------- /.github/assets/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/.github/assets/preview.png -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build-tauri.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/.github/workflows/build-tauri.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/pre-commit-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/.github/workflows/pre-commit-check.yml -------------------------------------------------------------------------------- /.github/workflows/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/.github/workflows/release-please.yml -------------------------------------------------------------------------------- /.github/workflows/website-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/.github/workflows/website-deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 18 2 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/.prettierrc -------------------------------------------------------------------------------- /.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | ".": "1.9.0" 3 | } 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yarn/install-state.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/.yarn/install-state.gz -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/README.md -------------------------------------------------------------------------------- /app/electron/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | build/ 3 | dist/ 4 | -------------------------------------------------------------------------------- /app/electron/electron-builder/afterSign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/electron/electron-builder/afterSign.js -------------------------------------------------------------------------------- /app/electron/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/electron/jest.config.js -------------------------------------------------------------------------------- /app/electron/nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/electron/nodemon.json -------------------------------------------------------------------------------- /app/electron/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/electron/package.json -------------------------------------------------------------------------------- /app/electron/src/assets/logo-dark.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/electron/src/assets/logo-dark.ico -------------------------------------------------------------------------------- /app/electron/src/assets/logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/electron/src/assets/logo-dark.png -------------------------------------------------------------------------------- /app/electron/src/assets/logo-dark256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/electron/src/assets/logo-dark256x256.png -------------------------------------------------------------------------------- /app/electron/src/assets/logo-dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/electron/src/assets/logo-dark@2x.png -------------------------------------------------------------------------------- /app/electron/src/assets/notification-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/electron/src/assets/notification-dark.png -------------------------------------------------------------------------------- /app/electron/src/assets/tray-dark-lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/electron/src/assets/tray-dark-lb.png -------------------------------------------------------------------------------- /app/electron/src/assets/tray-dark-sb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/electron/src/assets/tray-dark-sb.png -------------------------------------------------------------------------------- /app/electron/src/assets/tray-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/electron/src/assets/tray-dark.png -------------------------------------------------------------------------------- /app/electron/src/assets/tray-lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/electron/src/assets/tray-lb.png -------------------------------------------------------------------------------- /app/electron/src/assets/tray-sb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/electron/src/assets/tray-sb.png -------------------------------------------------------------------------------- /app/electron/src/assets/tray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/electron/src/assets/tray.png -------------------------------------------------------------------------------- /app/electron/src/helpers/autoUpdater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/electron/src/helpers/autoUpdater.ts -------------------------------------------------------------------------------- /app/electron/src/helpers/blockShortcutKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/electron/src/helpers/blockShortcutKeys.ts -------------------------------------------------------------------------------- /app/electron/src/helpers/contextMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/electron/src/helpers/contextMenu.ts -------------------------------------------------------------------------------- /app/electron/src/helpers/discordRPC.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/electron/src/helpers/discordRPC.ts -------------------------------------------------------------------------------- /app/electron/src/helpers/getFromStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/electron/src/helpers/getFromStorage.ts -------------------------------------------------------------------------------- /app/electron/src/helpers/getIcon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/electron/src/helpers/getIcon.ts -------------------------------------------------------------------------------- /app/electron/src/helpers/getTrayIcon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/electron/src/helpers/getTrayIcon.ts -------------------------------------------------------------------------------- /app/electron/src/helpers/globalShortcuts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/electron/src/helpers/globalShortcuts.ts -------------------------------------------------------------------------------- /app/electron/src/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/electron/src/helpers/index.ts -------------------------------------------------------------------------------- /app/electron/src/helpers/isMacOS.ts: -------------------------------------------------------------------------------- 1 | export const isMacOS = () => process.platform === "darwin"; 2 | -------------------------------------------------------------------------------- /app/electron/src/helpers/isWindow.ts: -------------------------------------------------------------------------------- 1 | export const isWindow = () => process.platform === "win32"; 2 | -------------------------------------------------------------------------------- /app/electron/src/lifecycleEventHandlers/__tests__/fullScreenBreak.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/electron/src/lifecycleEventHandlers/__tests__/fullScreenBreak.test.ts -------------------------------------------------------------------------------- /app/electron/src/lifecycleEventHandlers/fullScreenBreak.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/electron/src/lifecycleEventHandlers/fullScreenBreak.ts -------------------------------------------------------------------------------- /app/electron/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/electron/src/main.ts -------------------------------------------------------------------------------- /app/electron/src/preload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/electron/src/preload.ts -------------------------------------------------------------------------------- /app/electron/src/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/electron/src/store.ts -------------------------------------------------------------------------------- /app/electron/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/electron/tsconfig.json -------------------------------------------------------------------------------- /app/renderer/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/.env -------------------------------------------------------------------------------- /app/renderer/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | build/ 3 | -------------------------------------------------------------------------------- /app/renderer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/package.json -------------------------------------------------------------------------------- /app/renderer/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/public/favicon.ico -------------------------------------------------------------------------------- /app/renderer/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/public/index.html -------------------------------------------------------------------------------- /app/renderer/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/App.tsx -------------------------------------------------------------------------------- /app/renderer/src/assets/audios/break-finished.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/audios/break-finished.wav -------------------------------------------------------------------------------- /app/renderer/src/assets/audios/focus-finished.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/audios/focus-finished.wav -------------------------------------------------------------------------------- /app/renderer/src/assets/audios/notification-bell.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/audios/notification-bell.wav -------------------------------------------------------------------------------- /app/renderer/src/assets/audios/session-completed.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/audios/session-completed.wav -------------------------------------------------------------------------------- /app/renderer/src/assets/audios/sixty-seconds-left.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/audios/sixty-seconds-left.wav -------------------------------------------------------------------------------- /app/renderer/src/assets/audios/special-break-started.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/audios/special-break-started.wav -------------------------------------------------------------------------------- /app/renderer/src/assets/audios/thirty-seconds-left.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/audios/thirty-seconds-left.wav -------------------------------------------------------------------------------- /app/renderer/src/assets/audios/warning-bell.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/audios/warning-bell.wav -------------------------------------------------------------------------------- /app/renderer/src/assets/fonts/noto-sans/NotoSans300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/fonts/noto-sans/NotoSans300.woff -------------------------------------------------------------------------------- /app/renderer/src/assets/fonts/noto-sans/NotoSans400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/fonts/noto-sans/NotoSans400.woff -------------------------------------------------------------------------------- /app/renderer/src/assets/fonts/noto-sans/NotoSans500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/fonts/noto-sans/NotoSans500.woff -------------------------------------------------------------------------------- /app/renderer/src/assets/fonts/typo-round/TypoRound300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/fonts/typo-round/TypoRound300.woff -------------------------------------------------------------------------------- /app/renderer/src/assets/fonts/typo-round/TypoRound400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/fonts/typo-round/TypoRound400.woff -------------------------------------------------------------------------------- /app/renderer/src/assets/icons/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/icons/add.svg -------------------------------------------------------------------------------- /app/renderer/src/assets/icons/alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/icons/alert.svg -------------------------------------------------------------------------------- /app/renderer/src/assets/icons/bonfire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/icons/bonfire.svg -------------------------------------------------------------------------------- /app/renderer/src/assets/icons/chevron-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/icons/chevron-down.svg -------------------------------------------------------------------------------- /app/renderer/src/assets/icons/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/icons/close.svg -------------------------------------------------------------------------------- /app/renderer/src/assets/icons/config.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/icons/config.svg -------------------------------------------------------------------------------- /app/renderer/src/assets/icons/expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/icons/expand.svg -------------------------------------------------------------------------------- /app/renderer/src/assets/icons/external.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/icons/external.svg -------------------------------------------------------------------------------- /app/renderer/src/assets/icons/fast-food.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/icons/fast-food.svg -------------------------------------------------------------------------------- /app/renderer/src/assets/icons/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/icons/index.ts -------------------------------------------------------------------------------- /app/renderer/src/assets/icons/laptop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/icons/laptop.svg -------------------------------------------------------------------------------- /app/renderer/src/assets/icons/mug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/icons/mug.svg -------------------------------------------------------------------------------- /app/renderer/src/assets/icons/nap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/icons/nap.svg -------------------------------------------------------------------------------- /app/renderer/src/assets/icons/option-x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/icons/option-x.svg -------------------------------------------------------------------------------- /app/renderer/src/assets/icons/option-y.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/icons/option-y.svg -------------------------------------------------------------------------------- /app/renderer/src/assets/icons/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/icons/pause.svg -------------------------------------------------------------------------------- /app/renderer/src/assets/icons/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/icons/pencil.svg -------------------------------------------------------------------------------- /app/renderer/src/assets/icons/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/icons/play.svg -------------------------------------------------------------------------------- /app/renderer/src/assets/icons/progress.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/icons/progress.svg -------------------------------------------------------------------------------- /app/renderer/src/assets/icons/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/icons/refresh.svg -------------------------------------------------------------------------------- /app/renderer/src/assets/icons/reset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/icons/reset.svg -------------------------------------------------------------------------------- /app/renderer/src/assets/icons/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/icons/save.svg -------------------------------------------------------------------------------- /app/renderer/src/assets/icons/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/icons/settings.svg -------------------------------------------------------------------------------- /app/renderer/src/assets/icons/skip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/icons/skip.svg -------------------------------------------------------------------------------- /app/renderer/src/assets/icons/task.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/icons/task.svg -------------------------------------------------------------------------------- /app/renderer/src/assets/icons/timer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/icons/timer.svg -------------------------------------------------------------------------------- /app/renderer/src/assets/icons/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/icons/trash.svg -------------------------------------------------------------------------------- /app/renderer/src/assets/icons/volume-mute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/icons/volume-mute.svg -------------------------------------------------------------------------------- /app/renderer/src/assets/icons/volume-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/icons/volume-on.svg -------------------------------------------------------------------------------- /app/renderer/src/assets/logos/logo-dark.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/logos/logo-dark.ico -------------------------------------------------------------------------------- /app/renderer/src/assets/logos/logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/logos/logo-dark.png -------------------------------------------------------------------------------- /app/renderer/src/assets/logos/logo-dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/logos/logo-dark@2x.png -------------------------------------------------------------------------------- /app/renderer/src/assets/logos/notification-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/logos/notification-dark.png -------------------------------------------------------------------------------- /app/renderer/src/assets/logos/tray-dark-lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/logos/tray-dark-lb.png -------------------------------------------------------------------------------- /app/renderer/src/assets/logos/tray-dark-sb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/logos/tray-dark-sb.png -------------------------------------------------------------------------------- /app/renderer/src/assets/logos/tray-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/logos/tray-dark.png -------------------------------------------------------------------------------- /app/renderer/src/assets/logos/tray-lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/logos/tray-lb.png -------------------------------------------------------------------------------- /app/renderer/src/assets/logos/tray-sb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/logos/tray-sb.png -------------------------------------------------------------------------------- /app/renderer/src/assets/logos/tray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/assets/logos/tray.png -------------------------------------------------------------------------------- /app/renderer/src/components/Alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/components/Alert.tsx -------------------------------------------------------------------------------- /app/renderer/src/components/Checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/components/Checkbox.tsx -------------------------------------------------------------------------------- /app/renderer/src/components/Collapse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/components/Collapse.tsx -------------------------------------------------------------------------------- /app/renderer/src/components/Dimmer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/components/Dimmer.tsx -------------------------------------------------------------------------------- /app/renderer/src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/components/Header.tsx -------------------------------------------------------------------------------- /app/renderer/src/components/Help.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/components/Help.tsx -------------------------------------------------------------------------------- /app/renderer/src/components/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/components/Layout.tsx -------------------------------------------------------------------------------- /app/renderer/src/components/NavNotify.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/components/NavNotify.tsx -------------------------------------------------------------------------------- /app/renderer/src/components/Navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/components/Navigation.tsx -------------------------------------------------------------------------------- /app/renderer/src/components/Popper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/components/Popper.tsx -------------------------------------------------------------------------------- /app/renderer/src/components/Portal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/components/Portal.tsx -------------------------------------------------------------------------------- /app/renderer/src/components/Preloader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/components/Preloader.tsx -------------------------------------------------------------------------------- /app/renderer/src/components/Radio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/components/Radio.tsx -------------------------------------------------------------------------------- /app/renderer/src/components/RangeLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/components/RangeLabel.tsx -------------------------------------------------------------------------------- /app/renderer/src/components/RangeSlider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/components/RangeSlider.tsx -------------------------------------------------------------------------------- /app/renderer/src/components/SVG.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/components/SVG.tsx -------------------------------------------------------------------------------- /app/renderer/src/components/Shortcut.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/components/Shortcut.tsx -------------------------------------------------------------------------------- /app/renderer/src/components/Time.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/components/Time.tsx -------------------------------------------------------------------------------- /app/renderer/src/components/Titlebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/components/Titlebar.tsx -------------------------------------------------------------------------------- /app/renderer/src/components/Toggler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/components/Toggler.tsx -------------------------------------------------------------------------------- /app/renderer/src/components/TraySVG.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/components/TraySVG.tsx -------------------------------------------------------------------------------- /app/renderer/src/components/Updater.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/components/Updater.tsx -------------------------------------------------------------------------------- /app/renderer/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/components/index.ts -------------------------------------------------------------------------------- /app/renderer/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/config.ts -------------------------------------------------------------------------------- /app/renderer/src/contexts/ConnnectorContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/contexts/ConnnectorContext.tsx -------------------------------------------------------------------------------- /app/renderer/src/contexts/CounterContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/contexts/CounterContext.tsx -------------------------------------------------------------------------------- /app/renderer/src/contexts/InvokeConnector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/contexts/InvokeConnector.tsx -------------------------------------------------------------------------------- /app/renderer/src/contexts/ThemeContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/contexts/ThemeContext.tsx -------------------------------------------------------------------------------- /app/renderer/src/contexts/connectors/ElectronConnector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/contexts/connectors/ElectronConnector.tsx -------------------------------------------------------------------------------- /app/renderer/src/contexts/connectors/TauriConnector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/contexts/connectors/TauriConnector.tsx -------------------------------------------------------------------------------- /app/renderer/src/contexts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/contexts/index.ts -------------------------------------------------------------------------------- /app/renderer/src/extensions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/extensions/index.ts -------------------------------------------------------------------------------- /app/renderer/src/extensions/string.extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/extensions/string.extension.ts -------------------------------------------------------------------------------- /app/renderer/src/extensions/window.extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/extensions/window.extension.ts -------------------------------------------------------------------------------- /app/renderer/src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/hooks/index.ts -------------------------------------------------------------------------------- /app/renderer/src/hooks/storeHooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/hooks/storeHooks.ts -------------------------------------------------------------------------------- /app/renderer/src/hooks/useInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/hooks/useInput.ts -------------------------------------------------------------------------------- /app/renderer/src/hooks/useInputHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/hooks/useInputHandler.ts -------------------------------------------------------------------------------- /app/renderer/src/hooks/useNotification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/hooks/useNotification.ts -------------------------------------------------------------------------------- /app/renderer/src/hooks/useRippleEffect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/hooks/useRippleEffect.ts -------------------------------------------------------------------------------- /app/renderer/src/hooks/useTargetOutside.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/hooks/useTargetOutside.ts -------------------------------------------------------------------------------- /app/renderer/src/hooks/useTime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/hooks/useTime.ts -------------------------------------------------------------------------------- /app/renderer/src/hooks/useTrayIconUpdates.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/hooks/useTrayIconUpdates.tsx -------------------------------------------------------------------------------- /app/renderer/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/index.css -------------------------------------------------------------------------------- /app/renderer/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/index.tsx -------------------------------------------------------------------------------- /app/renderer/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /app/renderer/src/routes/Config/ConfigHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/routes/Config/ConfigHeader.tsx -------------------------------------------------------------------------------- /app/renderer/src/routes/Config/ConfigSlider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/routes/Config/ConfigSlider.tsx -------------------------------------------------------------------------------- /app/renderer/src/routes/Config/SliderSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/routes/Config/SliderSection.tsx -------------------------------------------------------------------------------- /app/renderer/src/routes/Config/SpecialBreaks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/routes/Config/SpecialBreaks.tsx -------------------------------------------------------------------------------- /app/renderer/src/routes/Config/SpecialField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/routes/Config/SpecialField.tsx -------------------------------------------------------------------------------- /app/renderer/src/routes/Config/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/routes/Config/index.tsx -------------------------------------------------------------------------------- /app/renderer/src/routes/Settings/FeatureSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/routes/Settings/FeatureSection.tsx -------------------------------------------------------------------------------- /app/renderer/src/routes/Settings/HelpSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/routes/Settings/HelpSection.tsx -------------------------------------------------------------------------------- /app/renderer/src/routes/Settings/SettingHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/routes/Settings/SettingHeader.tsx -------------------------------------------------------------------------------- /app/renderer/src/routes/Settings/SettingSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/routes/Settings/SettingSection.tsx -------------------------------------------------------------------------------- /app/renderer/src/routes/Settings/ShortcutSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/routes/Settings/ShortcutSection.tsx -------------------------------------------------------------------------------- /app/renderer/src/routes/Settings/StickySection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/routes/Settings/StickySection.tsx -------------------------------------------------------------------------------- /app/renderer/src/routes/Settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/routes/Settings/index.tsx -------------------------------------------------------------------------------- /app/renderer/src/routes/Tasks/TaskCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/routes/Tasks/TaskCard.tsx -------------------------------------------------------------------------------- /app/renderer/src/routes/Tasks/TaskDetails/MDPreviewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/routes/Tasks/TaskDetails/MDPreviewer.tsx -------------------------------------------------------------------------------- /app/renderer/src/routes/Tasks/TaskDetails/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/routes/Tasks/TaskDetails/index.tsx -------------------------------------------------------------------------------- /app/renderer/src/routes/Tasks/TaskFormButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/routes/Tasks/TaskFormButton.tsx -------------------------------------------------------------------------------- /app/renderer/src/routes/Tasks/TaskHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/routes/Tasks/TaskHeader.tsx -------------------------------------------------------------------------------- /app/renderer/src/routes/Tasks/TaskInnerList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/routes/Tasks/TaskInnerList.tsx -------------------------------------------------------------------------------- /app/renderer/src/routes/Tasks/TaskList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/routes/Tasks/TaskList.tsx -------------------------------------------------------------------------------- /app/renderer/src/routes/Tasks/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/routes/Tasks/index.tsx -------------------------------------------------------------------------------- /app/renderer/src/routes/Timer/Control/CompactModeButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/routes/Timer/Control/CompactModeButton.tsx -------------------------------------------------------------------------------- /app/renderer/src/routes/Timer/Control/Control.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/routes/Timer/Control/Control.tsx -------------------------------------------------------------------------------- /app/renderer/src/routes/Timer/Control/PlayButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/routes/Timer/Control/PlayButton.tsx -------------------------------------------------------------------------------- /app/renderer/src/routes/Timer/Control/ResetButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/routes/Timer/Control/ResetButton.tsx -------------------------------------------------------------------------------- /app/renderer/src/routes/Timer/Control/Sessions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/routes/Timer/Control/Sessions.tsx -------------------------------------------------------------------------------- /app/renderer/src/routes/Timer/Control/SkipButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/routes/Timer/Control/SkipButton.tsx -------------------------------------------------------------------------------- /app/renderer/src/routes/Timer/Control/VolumeButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/routes/Timer/Control/VolumeButton.tsx -------------------------------------------------------------------------------- /app/renderer/src/routes/Timer/Control/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./Control"; 2 | -------------------------------------------------------------------------------- /app/renderer/src/routes/Timer/Counter/Counter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/routes/Timer/Counter/Counter.tsx -------------------------------------------------------------------------------- /app/renderer/src/routes/Timer/Counter/CounterLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/routes/Timer/Counter/CounterLabel.tsx -------------------------------------------------------------------------------- /app/renderer/src/routes/Timer/Counter/CounterTimer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/routes/Timer/Counter/CounterTimer.tsx -------------------------------------------------------------------------------- /app/renderer/src/routes/Timer/Counter/CounterType.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/routes/Timer/Counter/CounterType.tsx -------------------------------------------------------------------------------- /app/renderer/src/routes/Timer/Counter/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./Counter"; 2 | -------------------------------------------------------------------------------- /app/renderer/src/routes/Timer/PriorityCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/routes/Timer/PriorityCard.tsx -------------------------------------------------------------------------------- /app/renderer/src/routes/Timer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/routes/Timer/index.tsx -------------------------------------------------------------------------------- /app/renderer/src/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/routes/index.ts -------------------------------------------------------------------------------- /app/renderer/src/store/config/defaultConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/store/config/defaultConfig.ts -------------------------------------------------------------------------------- /app/renderer/src/store/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/store/config/index.ts -------------------------------------------------------------------------------- /app/renderer/src/store/config/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/store/config/types.ts -------------------------------------------------------------------------------- /app/renderer/src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/store/index.ts -------------------------------------------------------------------------------- /app/renderer/src/store/settings/defaultSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/store/settings/defaultSettings.ts -------------------------------------------------------------------------------- /app/renderer/src/store/settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/store/settings/index.ts -------------------------------------------------------------------------------- /app/renderer/src/store/settings/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/store/settings/types.ts -------------------------------------------------------------------------------- /app/renderer/src/store/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/store/store.ts -------------------------------------------------------------------------------- /app/renderer/src/store/tasks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/store/tasks/index.ts -------------------------------------------------------------------------------- /app/renderer/src/store/tasks/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/store/tasks/types.ts -------------------------------------------------------------------------------- /app/renderer/src/store/tasks/utils/task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/store/tasks/utils/task.ts -------------------------------------------------------------------------------- /app/renderer/src/store/tasks/utils/tasklist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/store/tasks/utils/tasklist.ts -------------------------------------------------------------------------------- /app/renderer/src/store/timer/defaultTimer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/store/timer/defaultTimer.ts -------------------------------------------------------------------------------- /app/renderer/src/store/timer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/store/timer/index.ts -------------------------------------------------------------------------------- /app/renderer/src/store/timer/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/store/timer/types.ts -------------------------------------------------------------------------------- /app/renderer/src/store/update/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/store/update/index.ts -------------------------------------------------------------------------------- /app/renderer/src/styles/components/alert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/styles/components/alert.ts -------------------------------------------------------------------------------- /app/renderer/src/styles/components/button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/styles/components/button.ts -------------------------------------------------------------------------------- /app/renderer/src/styles/components/checkbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/styles/components/checkbox.ts -------------------------------------------------------------------------------- /app/renderer/src/styles/components/collapse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/styles/components/collapse.ts -------------------------------------------------------------------------------- /app/renderer/src/styles/components/dimmer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/styles/components/dimmer.ts -------------------------------------------------------------------------------- /app/renderer/src/styles/components/header.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/styles/components/header.ts -------------------------------------------------------------------------------- /app/renderer/src/styles/components/help.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/styles/components/help.ts -------------------------------------------------------------------------------- /app/renderer/src/styles/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/styles/components/index.ts -------------------------------------------------------------------------------- /app/renderer/src/styles/components/input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/styles/components/input.ts -------------------------------------------------------------------------------- /app/renderer/src/styles/components/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/styles/components/layout.ts -------------------------------------------------------------------------------- /app/renderer/src/styles/components/loaders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/styles/components/loaders.ts -------------------------------------------------------------------------------- /app/renderer/src/styles/components/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/styles/components/navigation.ts -------------------------------------------------------------------------------- /app/renderer/src/styles/components/popper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/styles/components/popper.ts -------------------------------------------------------------------------------- /app/renderer/src/styles/components/range.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/styles/components/range.ts -------------------------------------------------------------------------------- /app/renderer/src/styles/components/shortcuts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/styles/components/shortcuts.ts -------------------------------------------------------------------------------- /app/renderer/src/styles/components/svg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/styles/components/svg.ts -------------------------------------------------------------------------------- /app/renderer/src/styles/components/textarea.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/styles/components/textarea.ts -------------------------------------------------------------------------------- /app/renderer/src/styles/components/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/styles/components/time.ts -------------------------------------------------------------------------------- /app/renderer/src/styles/components/titlebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/styles/components/titlebar.ts -------------------------------------------------------------------------------- /app/renderer/src/styles/components/toggler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/styles/components/toggler.ts -------------------------------------------------------------------------------- /app/renderer/src/styles/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/styles/global.ts -------------------------------------------------------------------------------- /app/renderer/src/styles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/styles/index.ts -------------------------------------------------------------------------------- /app/renderer/src/styles/mixins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/styles/mixins.ts -------------------------------------------------------------------------------- /app/renderer/src/styles/routes/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/styles/routes/config.ts -------------------------------------------------------------------------------- /app/renderer/src/styles/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/styles/routes/index.ts -------------------------------------------------------------------------------- /app/renderer/src/styles/routes/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/styles/routes/settings.ts -------------------------------------------------------------------------------- /app/renderer/src/styles/routes/tasks/card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/styles/routes/tasks/card.ts -------------------------------------------------------------------------------- /app/renderer/src/styles/routes/tasks/details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/styles/routes/tasks/details.ts -------------------------------------------------------------------------------- /app/renderer/src/styles/routes/tasks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/styles/routes/tasks/index.ts -------------------------------------------------------------------------------- /app/renderer/src/styles/routes/tasks/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/styles/routes/tasks/options.ts -------------------------------------------------------------------------------- /app/renderer/src/styles/routes/tasks/tasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/styles/routes/tasks/tasks.ts -------------------------------------------------------------------------------- /app/renderer/src/styles/routes/timer/control.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/styles/routes/timer/control.ts -------------------------------------------------------------------------------- /app/renderer/src/styles/routes/timer/counter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/styles/routes/timer/counter.ts -------------------------------------------------------------------------------- /app/renderer/src/styles/routes/timer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/styles/routes/timer/index.ts -------------------------------------------------------------------------------- /app/renderer/src/styles/routes/timer/timer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/styles/routes/timer/timer.ts -------------------------------------------------------------------------------- /app/renderer/src/styles/themes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/styles/themes.ts -------------------------------------------------------------------------------- /app/renderer/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/typings.d.ts -------------------------------------------------------------------------------- /app/renderer/src/utils/detectOS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/utils/detectOS.ts -------------------------------------------------------------------------------- /app/renderer/src/utils/encodeSvg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/utils/encodeSvg.ts -------------------------------------------------------------------------------- /app/renderer/src/utils/getShortcutFromEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/utils/getShortcutFromEvent.ts -------------------------------------------------------------------------------- /app/renderer/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/utils/index.ts -------------------------------------------------------------------------------- /app/renderer/src/utils/isBrowser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/utils/isBrowser.ts -------------------------------------------------------------------------------- /app/renderer/src/utils/isEqualToOne.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/utils/isEqualToOne.ts -------------------------------------------------------------------------------- /app/renderer/src/utils/isObjectEmpty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/utils/isObjectEmpty.ts -------------------------------------------------------------------------------- /app/renderer/src/utils/isPrefferedDark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/utils/isPrefferedDark.ts -------------------------------------------------------------------------------- /app/renderer/src/utils/padNumber.ts: -------------------------------------------------------------------------------- 1 | export const padNum = (n: number): string => (n < 10 ? "0" : "") + n; 2 | -------------------------------------------------------------------------------- /app/renderer/src/utils/parseTime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/utils/parseTime.ts -------------------------------------------------------------------------------- /app/renderer/src/utils/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/src/utils/storage.ts -------------------------------------------------------------------------------- /app/renderer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/tsconfig.json -------------------------------------------------------------------------------- /app/renderer/tts-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/renderer/tts-generator.js -------------------------------------------------------------------------------- /app/shareables/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | build/ 3 | -------------------------------------------------------------------------------- /app/shareables/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/shareables/package.json -------------------------------------------------------------------------------- /app/shareables/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/shareables/rollup.config.js -------------------------------------------------------------------------------- /app/shareables/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/shareables/src/index.ts -------------------------------------------------------------------------------- /app/shareables/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/shareables/tsconfig.json -------------------------------------------------------------------------------- /app/tauri/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/tauri/.gitignore -------------------------------------------------------------------------------- /app/tauri/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/tauri/Cargo.lock -------------------------------------------------------------------------------- /app/tauri/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/tauri/Cargo.toml -------------------------------------------------------------------------------- /app/tauri/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/tauri/README.MD -------------------------------------------------------------------------------- /app/tauri/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/tauri/build.rs -------------------------------------------------------------------------------- /app/tauri/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/tauri/icons/128x128.png -------------------------------------------------------------------------------- /app/tauri/icons/128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/tauri/icons/128x128@2x.png -------------------------------------------------------------------------------- /app/tauri/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/tauri/icons/32x32.png -------------------------------------------------------------------------------- /app/tauri/icons/Square107x107Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/tauri/icons/Square107x107Logo.png -------------------------------------------------------------------------------- /app/tauri/icons/Square142x142Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/tauri/icons/Square142x142Logo.png -------------------------------------------------------------------------------- /app/tauri/icons/Square150x150Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/tauri/icons/Square150x150Logo.png -------------------------------------------------------------------------------- /app/tauri/icons/Square284x284Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/tauri/icons/Square284x284Logo.png -------------------------------------------------------------------------------- /app/tauri/icons/Square30x30Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/tauri/icons/Square30x30Logo.png -------------------------------------------------------------------------------- /app/tauri/icons/Square310x310Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/tauri/icons/Square310x310Logo.png -------------------------------------------------------------------------------- /app/tauri/icons/Square44x44Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/tauri/icons/Square44x44Logo.png -------------------------------------------------------------------------------- /app/tauri/icons/Square71x71Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/tauri/icons/Square71x71Logo.png -------------------------------------------------------------------------------- /app/tauri/icons/Square89x89Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/tauri/icons/Square89x89Logo.png -------------------------------------------------------------------------------- /app/tauri/icons/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/tauri/icons/StoreLogo.png -------------------------------------------------------------------------------- /app/tauri/icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/tauri/icons/icon.icns -------------------------------------------------------------------------------- /app/tauri/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/tauri/icons/icon.ico -------------------------------------------------------------------------------- /app/tauri/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/tauri/icons/icon.png -------------------------------------------------------------------------------- /app/tauri/installer/nsis/header.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/tauri/installer/nsis/header.bmp -------------------------------------------------------------------------------- /app/tauri/installer/nsis/sidebar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/tauri/installer/nsis/sidebar.bmp -------------------------------------------------------------------------------- /app/tauri/installer/wix/banner.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/tauri/installer/wix/banner.bmp -------------------------------------------------------------------------------- /app/tauri/installer/wix/dialog.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/tauri/installer/wix/dialog.bmp -------------------------------------------------------------------------------- /app/tauri/release-prep/release-prep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/tauri/release-prep/release-prep.js -------------------------------------------------------------------------------- /app/tauri/release.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/tauri/release.conf.json -------------------------------------------------------------------------------- /app/tauri/src/commands.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/tauri/src/commands.rs -------------------------------------------------------------------------------- /app/tauri/src/global_shortcuts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/tauri/src/global_shortcuts.rs -------------------------------------------------------------------------------- /app/tauri/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/tauri/src/main.rs -------------------------------------------------------------------------------- /app/tauri/src/system_tray.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/tauri/src/system_tray.rs -------------------------------------------------------------------------------- /app/tauri/src/updater.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/tauri/src/updater.rs -------------------------------------------------------------------------------- /app/tauri/tauri.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/tauri/tauri.conf.json -------------------------------------------------------------------------------- /app/tauri/util/cargo-version-updater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/app/tauri/util/cargo-version-updater.js -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/lerna.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/package.json -------------------------------------------------------------------------------- /release-please-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/release-please-config.json -------------------------------------------------------------------------------- /snap/gui/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/snap/gui/icon.png -------------------------------------------------------------------------------- /snap/gui/pomatez.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/snap/gui/pomatez.desktop -------------------------------------------------------------------------------- /snap/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/snap/snapcraft.yaml -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/tsconfig.json -------------------------------------------------------------------------------- /website/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/.eslintignore -------------------------------------------------------------------------------- /website/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/.eslintrc.js -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .cache/ 3 | public 4 | src/gatsby-types.d.ts 5 | -------------------------------------------------------------------------------- /website/.nvmrc: -------------------------------------------------------------------------------- 1 | 18.13.0 2 | -------------------------------------------------------------------------------- /website/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/.prettierignore -------------------------------------------------------------------------------- /website/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/.prettierrc -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/README.md -------------------------------------------------------------------------------- /website/assets/icons/apple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/assets/icons/apple.svg -------------------------------------------------------------------------------- /website/assets/icons/arrow-back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/assets/icons/arrow-back.svg -------------------------------------------------------------------------------- /website/assets/icons/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/assets/icons/download.svg -------------------------------------------------------------------------------- /website/assets/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/assets/icons/github.svg -------------------------------------------------------------------------------- /website/assets/icons/linux.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/assets/icons/linux.svg -------------------------------------------------------------------------------- /website/assets/icons/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/assets/icons/moon.svg -------------------------------------------------------------------------------- /website/assets/icons/pomatez.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/assets/icons/pomatez.svg -------------------------------------------------------------------------------- /website/assets/icons/snap-store.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/assets/icons/snap-store.svg -------------------------------------------------------------------------------- /website/assets/icons/sunny.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/assets/icons/sunny.svg -------------------------------------------------------------------------------- /website/assets/icons/tux.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/assets/icons/tux.svg -------------------------------------------------------------------------------- /website/assets/icons/windows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/assets/icons/windows.svg -------------------------------------------------------------------------------- /website/assets/images/config-dark.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/assets/images/config-dark.PNG -------------------------------------------------------------------------------- /website/assets/images/config-light.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/assets/images/config-light.PNG -------------------------------------------------------------------------------- /website/assets/images/logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/assets/images/logo-dark.png -------------------------------------------------------------------------------- /website/assets/images/logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/assets/images/logo-light.png -------------------------------------------------------------------------------- /website/assets/images/long-break-dark.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/assets/images/long-break-dark.PNG -------------------------------------------------------------------------------- /website/assets/images/long-break-light.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/assets/images/long-break-light.PNG -------------------------------------------------------------------------------- /website/assets/images/preview-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/assets/images/preview-dark.png -------------------------------------------------------------------------------- /website/assets/images/preview-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/assets/images/preview-light.png -------------------------------------------------------------------------------- /website/assets/images/settings-dark.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/assets/images/settings-dark.PNG -------------------------------------------------------------------------------- /website/assets/images/settings-light.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/assets/images/settings-light.PNG -------------------------------------------------------------------------------- /website/assets/images/short-break-dark.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/assets/images/short-break-dark.PNG -------------------------------------------------------------------------------- /website/assets/images/short-break-light.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/assets/images/short-break-light.PNG -------------------------------------------------------------------------------- /website/assets/images/tasks-dark.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/assets/images/tasks-dark.PNG -------------------------------------------------------------------------------- /website/assets/images/tasks-light.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/assets/images/tasks-light.PNG -------------------------------------------------------------------------------- /website/assets/images/watermark-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/assets/images/watermark-left.svg -------------------------------------------------------------------------------- /website/assets/images/watermark-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/assets/images/watermark-right.svg -------------------------------------------------------------------------------- /website/assets/images/work-time-dark.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/assets/images/work-time-dark.PNG -------------------------------------------------------------------------------- /website/assets/images/work-time-light.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/assets/images/work-time-light.PNG -------------------------------------------------------------------------------- /website/content/download.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/content/download.md -------------------------------------------------------------------------------- /website/content/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/content/features.md -------------------------------------------------------------------------------- /website/content/hero.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/content/hero.md -------------------------------------------------------------------------------- /website/content/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/content/roadmap.md -------------------------------------------------------------------------------- /website/gatsby-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/gatsby-config.ts -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/package.json -------------------------------------------------------------------------------- /website/src/components/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/components/footer.tsx -------------------------------------------------------------------------------- /website/src/components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/components/header.tsx -------------------------------------------------------------------------------- /website/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/components/index.ts -------------------------------------------------------------------------------- /website/src/components/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/components/logo.tsx -------------------------------------------------------------------------------- /website/src/components/navigation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/components/navigation/index.ts -------------------------------------------------------------------------------- /website/src/components/navigation/nav-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/components/navigation/nav-link.tsx -------------------------------------------------------------------------------- /website/src/components/navigation/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/components/navigation/navbar.tsx -------------------------------------------------------------------------------- /website/src/components/page/head.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/components/page/head.tsx -------------------------------------------------------------------------------- /website/src/components/page/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/components/page/index.ts -------------------------------------------------------------------------------- /website/src/components/page/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/components/page/layout.tsx -------------------------------------------------------------------------------- /website/src/components/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/components/sidebar.tsx -------------------------------------------------------------------------------- /website/src/components/svg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/components/svg.tsx -------------------------------------------------------------------------------- /website/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/config.ts -------------------------------------------------------------------------------- /website/src/context/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/context/index.ts -------------------------------------------------------------------------------- /website/src/context/nav-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/context/nav-context.tsx -------------------------------------------------------------------------------- /website/src/context/theme-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/context/theme-context.tsx -------------------------------------------------------------------------------- /website/src/context/viewport-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/context/viewport-context.tsx -------------------------------------------------------------------------------- /website/src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/hooks/index.ts -------------------------------------------------------------------------------- /website/src/hooks/use-context-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/hooks/use-context-provider.ts -------------------------------------------------------------------------------- /website/src/hooks/use-is-browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/hooks/use-is-browser.ts -------------------------------------------------------------------------------- /website/src/hooks/use-target-outside.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/hooks/use-target-outside.ts -------------------------------------------------------------------------------- /website/src/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/pages/404.tsx -------------------------------------------------------------------------------- /website/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/pages/index.tsx -------------------------------------------------------------------------------- /website/src/queries/download.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/queries/download.ts -------------------------------------------------------------------------------- /website/src/queries/features.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/queries/features.ts -------------------------------------------------------------------------------- /website/src/queries/hero.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/queries/hero.ts -------------------------------------------------------------------------------- /website/src/queries/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/queries/index.ts -------------------------------------------------------------------------------- /website/src/queries/roadmap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/queries/roadmap.ts -------------------------------------------------------------------------------- /website/src/sections/download.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/sections/download.tsx -------------------------------------------------------------------------------- /website/src/sections/features.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/sections/features.tsx -------------------------------------------------------------------------------- /website/src/sections/hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/sections/hero.tsx -------------------------------------------------------------------------------- /website/src/sections/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/sections/index.ts -------------------------------------------------------------------------------- /website/src/sections/roadmap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/sections/roadmap.tsx -------------------------------------------------------------------------------- /website/src/styles/animate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/styles/animate.ts -------------------------------------------------------------------------------- /website/src/styles/components/button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/styles/components/button.ts -------------------------------------------------------------------------------- /website/src/styles/components/footer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/styles/components/footer.ts -------------------------------------------------------------------------------- /website/src/styles/components/header.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/styles/components/header.ts -------------------------------------------------------------------------------- /website/src/styles/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/styles/components/index.ts -------------------------------------------------------------------------------- /website/src/styles/components/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/styles/components/layout.ts -------------------------------------------------------------------------------- /website/src/styles/components/nav.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/styles/components/nav.ts -------------------------------------------------------------------------------- /website/src/styles/components/sidebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/styles/components/sidebar.ts -------------------------------------------------------------------------------- /website/src/styles/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/styles/global.ts -------------------------------------------------------------------------------- /website/src/styles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/styles/index.ts -------------------------------------------------------------------------------- /website/src/styles/media.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/styles/media.ts -------------------------------------------------------------------------------- /website/src/styles/mixins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/styles/mixins.ts -------------------------------------------------------------------------------- /website/src/styles/sections/404.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/styles/sections/404.ts -------------------------------------------------------------------------------- /website/src/styles/sections/download.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/styles/sections/download.ts -------------------------------------------------------------------------------- /website/src/styles/sections/features.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/styles/sections/features.ts -------------------------------------------------------------------------------- /website/src/styles/sections/hero.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/styles/sections/hero.ts -------------------------------------------------------------------------------- /website/src/styles/sections/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/styles/sections/index.ts -------------------------------------------------------------------------------- /website/src/styles/sections/roadmap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/styles/sections/roadmap.ts -------------------------------------------------------------------------------- /website/src/styles/themes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/styles/themes.ts -------------------------------------------------------------------------------- /website/src/types/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/types/image.ts -------------------------------------------------------------------------------- /website/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/types/index.ts -------------------------------------------------------------------------------- /website/src/types/markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/types/markdown.ts -------------------------------------------------------------------------------- /website/src/types/meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/types/meta.ts -------------------------------------------------------------------------------- /website/src/types/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/types/typings.d.ts -------------------------------------------------------------------------------- /website/src/utils/detectOS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/utils/detectOS.ts -------------------------------------------------------------------------------- /website/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/utils/index.ts -------------------------------------------------------------------------------- /website/src/utils/isPreferredDark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/utils/isPreferredDark.ts -------------------------------------------------------------------------------- /website/src/utils/isSSR.ts: -------------------------------------------------------------------------------- 1 | export const isSSR = typeof window === "undefined"; 2 | -------------------------------------------------------------------------------- /website/src/utils/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/utils/storage.ts -------------------------------------------------------------------------------- /website/src/utils/styled/media.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/src/utils/styled/media.ts -------------------------------------------------------------------------------- /website/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/tsconfig.json -------------------------------------------------------------------------------- /website/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/website/yarn.lock -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zidoro/pomatez/HEAD/yarn.lock --------------------------------------------------------------------------------