├── .github ├── FUNDING.yml └── workflows │ └── publish.yml ├── .gitignore ├── AGENTS.md ├── LICENSE ├── README.md └── apps ├── desktop ├── .hintrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── biome.json ├── bun.lock ├── forge.config.ts ├── forge.env.d.ts ├── index.html ├── package.json ├── postcss.config.js ├── public │ ├── assets │ │ ├── download.svg │ │ ├── electron.png │ │ ├── eye-slash.svg │ │ ├── eye.svg │ │ ├── folder-plus.svg │ │ ├── folder.svg │ │ ├── gear-six.svg │ │ ├── github-logo.svg │ │ ├── lock.svg │ │ ├── screenshot.png │ │ └── unlock.svg │ └── widgets │ │ ├── app releases │ │ ├── index.html │ │ ├── script.js │ │ └── styles.css │ │ ├── clock │ │ ├── index.css │ │ ├── index.html │ │ └── renderer.js │ │ ├── daily weather │ │ ├── index.css │ │ ├── index.html │ │ └── renderer.js │ │ ├── disk usage │ │ ├── index.html │ │ ├── script.js │ │ └── styles.css │ │ ├── hacker news │ │ ├── YCombinator.png │ │ ├── index.html │ │ ├── script.js │ │ └── styles.css │ │ ├── r-programming │ │ ├── index.html │ │ ├── reddit.png │ │ ├── script.js │ │ └── styles.css │ │ ├── search │ │ ├── index.css │ │ ├── index.html │ │ └── renderer.js │ │ ├── system information │ │ ├── index.html │ │ ├── script.js │ │ └── styles.css │ │ ├── transparent clock │ │ ├── index.html │ │ ├── script.js │ │ └── styles.css │ │ └── widgets.json ├── scripts │ └── make.sh ├── src │ ├── app │ │ ├── main │ │ │ ├── ipc-operations │ │ │ │ ├── app-operations.ts │ │ │ │ ├── global.ts │ │ │ │ ├── widget-data.ts │ │ │ │ ├── widget-visibility.ts │ │ │ │ └── widget-window.ts │ │ │ └── main.ts │ │ ├── preload │ │ │ ├── electronAPI.ts │ │ │ └── preload.ts │ │ └── renderer │ │ │ ├── app.vue │ │ │ ├── components │ │ │ ├── DropdownButton.vue │ │ │ ├── Hero.vue │ │ │ ├── Navbar.vue │ │ │ ├── SettingsButton.vue │ │ │ └── index.ts │ │ │ ├── index.css │ │ │ └── renderer.ts │ ├── lib │ │ ├── config.ts │ │ ├── ipc-channels.ts │ │ └── preset.ts │ ├── types │ │ └── index.d.ts │ └── utils │ │ ├── browser-windows │ │ ├── main-window.ts │ │ ├── widget-windows.ts │ │ └── window-manager.ts │ │ ├── display-control.ts │ │ ├── index.ts │ │ ├── tray.ts │ │ ├── utils.ts │ │ └── widget │ │ ├── css.ts │ │ ├── download-widget-folder.ts │ │ └── widgets-folder.ts ├── tsconfig.json ├── vite.base.config.ts ├── vite.main.config.ts ├── vite.preload.config.ts └── vite.renderer.config.ts └── web ├── .gitignore ├── .vitepress ├── cache │ └── deps │ │ ├── _metadata.json │ │ ├── chunk-ZZEIC257.js │ │ ├── chunk-ZZEIC257.js.map │ │ ├── package.json │ │ ├── vitepress___@vue_devtools-api.js │ │ ├── vitepress___@vue_devtools-api.js.map │ │ ├── vitepress___@vueuse_core.js │ │ ├── vitepress___@vueuse_core.js.map │ │ ├── vue.js │ │ └── vue.js.map └── config.mts ├── CLAUDE.md ├── Dockerfile ├── README.md ├── bun.lock ├── docs ├── best-practice-to-render-an-array.md ├── built-in-api-return-types.md ├── creating-a-custom-scrollbar.md ├── creating-subreddit-widget.md ├── developer-console.md ├── frameless-window.md ├── index-html.md ├── installation-of-a-widget.md ├── overview.md ├── responsive-design.md ├── show-native-notifications.md ├── using-custom-data.md ├── using-javascript.md └── widgets-configuration.md ├── index.md ├── index.ts ├── package.json └── tsconfig.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/.gitignore -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/AGENTS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/README.md -------------------------------------------------------------------------------- /apps/desktop/.hintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/.hintrc -------------------------------------------------------------------------------- /apps/desktop/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /apps/desktop/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/CONTRIBUTING.md -------------------------------------------------------------------------------- /apps/desktop/biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/biome.json -------------------------------------------------------------------------------- /apps/desktop/bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/bun.lock -------------------------------------------------------------------------------- /apps/desktop/forge.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/forge.config.ts -------------------------------------------------------------------------------- /apps/desktop/forge.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/forge.env.d.ts -------------------------------------------------------------------------------- /apps/desktop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/index.html -------------------------------------------------------------------------------- /apps/desktop/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/package.json -------------------------------------------------------------------------------- /apps/desktop/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/postcss.config.js -------------------------------------------------------------------------------- /apps/desktop/public/assets/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/public/assets/download.svg -------------------------------------------------------------------------------- /apps/desktop/public/assets/electron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/public/assets/electron.png -------------------------------------------------------------------------------- /apps/desktop/public/assets/eye-slash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/public/assets/eye-slash.svg -------------------------------------------------------------------------------- /apps/desktop/public/assets/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/public/assets/eye.svg -------------------------------------------------------------------------------- /apps/desktop/public/assets/folder-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/public/assets/folder-plus.svg -------------------------------------------------------------------------------- /apps/desktop/public/assets/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/public/assets/folder.svg -------------------------------------------------------------------------------- /apps/desktop/public/assets/gear-six.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/public/assets/gear-six.svg -------------------------------------------------------------------------------- /apps/desktop/public/assets/github-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/public/assets/github-logo.svg -------------------------------------------------------------------------------- /apps/desktop/public/assets/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/public/assets/lock.svg -------------------------------------------------------------------------------- /apps/desktop/public/assets/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/public/assets/screenshot.png -------------------------------------------------------------------------------- /apps/desktop/public/assets/unlock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/public/assets/unlock.svg -------------------------------------------------------------------------------- /apps/desktop/public/widgets/app releases/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/public/widgets/app releases/index.html -------------------------------------------------------------------------------- /apps/desktop/public/widgets/app releases/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/public/widgets/app releases/script.js -------------------------------------------------------------------------------- /apps/desktop/public/widgets/app releases/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/public/widgets/app releases/styles.css -------------------------------------------------------------------------------- /apps/desktop/public/widgets/clock/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/public/widgets/clock/index.css -------------------------------------------------------------------------------- /apps/desktop/public/widgets/clock/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/public/widgets/clock/index.html -------------------------------------------------------------------------------- /apps/desktop/public/widgets/clock/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/public/widgets/clock/renderer.js -------------------------------------------------------------------------------- /apps/desktop/public/widgets/daily weather/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/public/widgets/daily weather/index.css -------------------------------------------------------------------------------- /apps/desktop/public/widgets/daily weather/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/public/widgets/daily weather/index.html -------------------------------------------------------------------------------- /apps/desktop/public/widgets/daily weather/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/public/widgets/daily weather/renderer.js -------------------------------------------------------------------------------- /apps/desktop/public/widgets/disk usage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/public/widgets/disk usage/index.html -------------------------------------------------------------------------------- /apps/desktop/public/widgets/disk usage/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/public/widgets/disk usage/script.js -------------------------------------------------------------------------------- /apps/desktop/public/widgets/disk usage/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/public/widgets/disk usage/styles.css -------------------------------------------------------------------------------- /apps/desktop/public/widgets/hacker news/YCombinator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/public/widgets/hacker news/YCombinator.png -------------------------------------------------------------------------------- /apps/desktop/public/widgets/hacker news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/public/widgets/hacker news/index.html -------------------------------------------------------------------------------- /apps/desktop/public/widgets/hacker news/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/public/widgets/hacker news/script.js -------------------------------------------------------------------------------- /apps/desktop/public/widgets/hacker news/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/public/widgets/hacker news/styles.css -------------------------------------------------------------------------------- /apps/desktop/public/widgets/r-programming/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/public/widgets/r-programming/index.html -------------------------------------------------------------------------------- /apps/desktop/public/widgets/r-programming/reddit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/public/widgets/r-programming/reddit.png -------------------------------------------------------------------------------- /apps/desktop/public/widgets/r-programming/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/public/widgets/r-programming/script.js -------------------------------------------------------------------------------- /apps/desktop/public/widgets/r-programming/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/public/widgets/r-programming/styles.css -------------------------------------------------------------------------------- /apps/desktop/public/widgets/search/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/public/widgets/search/index.css -------------------------------------------------------------------------------- /apps/desktop/public/widgets/search/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/public/widgets/search/index.html -------------------------------------------------------------------------------- /apps/desktop/public/widgets/search/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/public/widgets/search/renderer.js -------------------------------------------------------------------------------- /apps/desktop/public/widgets/system information/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/public/widgets/system information/index.html -------------------------------------------------------------------------------- /apps/desktop/public/widgets/system information/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/public/widgets/system information/script.js -------------------------------------------------------------------------------- /apps/desktop/public/widgets/system information/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/public/widgets/system information/styles.css -------------------------------------------------------------------------------- /apps/desktop/public/widgets/transparent clock/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/public/widgets/transparent clock/index.html -------------------------------------------------------------------------------- /apps/desktop/public/widgets/transparent clock/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/public/widgets/transparent clock/script.js -------------------------------------------------------------------------------- /apps/desktop/public/widgets/transparent clock/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/public/widgets/transparent clock/styles.css -------------------------------------------------------------------------------- /apps/desktop/public/widgets/widgets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/public/widgets/widgets.json -------------------------------------------------------------------------------- /apps/desktop/scripts/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/scripts/make.sh -------------------------------------------------------------------------------- /apps/desktop/src/app/main/ipc-operations/app-operations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/src/app/main/ipc-operations/app-operations.ts -------------------------------------------------------------------------------- /apps/desktop/src/app/main/ipc-operations/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/src/app/main/ipc-operations/global.ts -------------------------------------------------------------------------------- /apps/desktop/src/app/main/ipc-operations/widget-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/src/app/main/ipc-operations/widget-data.ts -------------------------------------------------------------------------------- /apps/desktop/src/app/main/ipc-operations/widget-visibility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/src/app/main/ipc-operations/widget-visibility.ts -------------------------------------------------------------------------------- /apps/desktop/src/app/main/ipc-operations/widget-window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/src/app/main/ipc-operations/widget-window.ts -------------------------------------------------------------------------------- /apps/desktop/src/app/main/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/src/app/main/main.ts -------------------------------------------------------------------------------- /apps/desktop/src/app/preload/electronAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/src/app/preload/electronAPI.ts -------------------------------------------------------------------------------- /apps/desktop/src/app/preload/preload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/src/app/preload/preload.ts -------------------------------------------------------------------------------- /apps/desktop/src/app/renderer/app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/src/app/renderer/app.vue -------------------------------------------------------------------------------- /apps/desktop/src/app/renderer/components/DropdownButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/src/app/renderer/components/DropdownButton.vue -------------------------------------------------------------------------------- /apps/desktop/src/app/renderer/components/Hero.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/src/app/renderer/components/Hero.vue -------------------------------------------------------------------------------- /apps/desktop/src/app/renderer/components/Navbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/src/app/renderer/components/Navbar.vue -------------------------------------------------------------------------------- /apps/desktop/src/app/renderer/components/SettingsButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/src/app/renderer/components/SettingsButton.vue -------------------------------------------------------------------------------- /apps/desktop/src/app/renderer/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/src/app/renderer/components/index.ts -------------------------------------------------------------------------------- /apps/desktop/src/app/renderer/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/src/app/renderer/index.css -------------------------------------------------------------------------------- /apps/desktop/src/app/renderer/renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/src/app/renderer/renderer.ts -------------------------------------------------------------------------------- /apps/desktop/src/lib/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/src/lib/config.ts -------------------------------------------------------------------------------- /apps/desktop/src/lib/ipc-channels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/src/lib/ipc-channels.ts -------------------------------------------------------------------------------- /apps/desktop/src/lib/preset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/src/lib/preset.ts -------------------------------------------------------------------------------- /apps/desktop/src/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/src/types/index.d.ts -------------------------------------------------------------------------------- /apps/desktop/src/utils/browser-windows/main-window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/src/utils/browser-windows/main-window.ts -------------------------------------------------------------------------------- /apps/desktop/src/utils/browser-windows/widget-windows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/src/utils/browser-windows/widget-windows.ts -------------------------------------------------------------------------------- /apps/desktop/src/utils/browser-windows/window-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/src/utils/browser-windows/window-manager.ts -------------------------------------------------------------------------------- /apps/desktop/src/utils/display-control.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/src/utils/display-control.ts -------------------------------------------------------------------------------- /apps/desktop/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/src/utils/index.ts -------------------------------------------------------------------------------- /apps/desktop/src/utils/tray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/src/utils/tray.ts -------------------------------------------------------------------------------- /apps/desktop/src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/src/utils/utils.ts -------------------------------------------------------------------------------- /apps/desktop/src/utils/widget/css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/src/utils/widget/css.ts -------------------------------------------------------------------------------- /apps/desktop/src/utils/widget/download-widget-folder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/src/utils/widget/download-widget-folder.ts -------------------------------------------------------------------------------- /apps/desktop/src/utils/widget/widgets-folder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/src/utils/widget/widgets-folder.ts -------------------------------------------------------------------------------- /apps/desktop/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/tsconfig.json -------------------------------------------------------------------------------- /apps/desktop/vite.base.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/vite.base.config.ts -------------------------------------------------------------------------------- /apps/desktop/vite.main.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/vite.main.config.ts -------------------------------------------------------------------------------- /apps/desktop/vite.preload.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/vite.preload.config.ts -------------------------------------------------------------------------------- /apps/desktop/vite.renderer.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/desktop/vite.renderer.config.ts -------------------------------------------------------------------------------- /apps/web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/web/.gitignore -------------------------------------------------------------------------------- /apps/web/.vitepress/cache/deps/_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/web/.vitepress/cache/deps/_metadata.json -------------------------------------------------------------------------------- /apps/web/.vitepress/cache/deps/chunk-ZZEIC257.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/web/.vitepress/cache/deps/chunk-ZZEIC257.js -------------------------------------------------------------------------------- /apps/web/.vitepress/cache/deps/chunk-ZZEIC257.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/web/.vitepress/cache/deps/chunk-ZZEIC257.js.map -------------------------------------------------------------------------------- /apps/web/.vitepress/cache/deps/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } 4 | -------------------------------------------------------------------------------- /apps/web/.vitepress/cache/deps/vitepress___@vue_devtools-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/web/.vitepress/cache/deps/vitepress___@vue_devtools-api.js -------------------------------------------------------------------------------- /apps/web/.vitepress/cache/deps/vitepress___@vue_devtools-api.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/web/.vitepress/cache/deps/vitepress___@vue_devtools-api.js.map -------------------------------------------------------------------------------- /apps/web/.vitepress/cache/deps/vitepress___@vueuse_core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/web/.vitepress/cache/deps/vitepress___@vueuse_core.js -------------------------------------------------------------------------------- /apps/web/.vitepress/cache/deps/vitepress___@vueuse_core.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/web/.vitepress/cache/deps/vitepress___@vueuse_core.js.map -------------------------------------------------------------------------------- /apps/web/.vitepress/cache/deps/vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/web/.vitepress/cache/deps/vue.js -------------------------------------------------------------------------------- /apps/web/.vitepress/cache/deps/vue.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/web/.vitepress/cache/deps/vue.js.map -------------------------------------------------------------------------------- /apps/web/.vitepress/config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/web/.vitepress/config.mts -------------------------------------------------------------------------------- /apps/web/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/web/CLAUDE.md -------------------------------------------------------------------------------- /apps/web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/web/Dockerfile -------------------------------------------------------------------------------- /apps/web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/web/README.md -------------------------------------------------------------------------------- /apps/web/bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/web/bun.lock -------------------------------------------------------------------------------- /apps/web/docs/best-practice-to-render-an-array.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/web/docs/best-practice-to-render-an-array.md -------------------------------------------------------------------------------- /apps/web/docs/built-in-api-return-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/web/docs/built-in-api-return-types.md -------------------------------------------------------------------------------- /apps/web/docs/creating-a-custom-scrollbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/web/docs/creating-a-custom-scrollbar.md -------------------------------------------------------------------------------- /apps/web/docs/creating-subreddit-widget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/web/docs/creating-subreddit-widget.md -------------------------------------------------------------------------------- /apps/web/docs/developer-console.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/web/docs/developer-console.md -------------------------------------------------------------------------------- /apps/web/docs/frameless-window.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/web/docs/frameless-window.md -------------------------------------------------------------------------------- /apps/web/docs/index-html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/web/docs/index-html.md -------------------------------------------------------------------------------- /apps/web/docs/installation-of-a-widget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/web/docs/installation-of-a-widget.md -------------------------------------------------------------------------------- /apps/web/docs/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/web/docs/overview.md -------------------------------------------------------------------------------- /apps/web/docs/responsive-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/web/docs/responsive-design.md -------------------------------------------------------------------------------- /apps/web/docs/show-native-notifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/web/docs/show-native-notifications.md -------------------------------------------------------------------------------- /apps/web/docs/using-custom-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/web/docs/using-custom-data.md -------------------------------------------------------------------------------- /apps/web/docs/using-javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/web/docs/using-javascript.md -------------------------------------------------------------------------------- /apps/web/docs/widgets-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/web/docs/widgets-configuration.md -------------------------------------------------------------------------------- /apps/web/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/web/index.md -------------------------------------------------------------------------------- /apps/web/index.ts: -------------------------------------------------------------------------------- 1 | console.log("Hello via Bun!"); -------------------------------------------------------------------------------- /apps/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/web/package.json -------------------------------------------------------------------------------- /apps/web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sametcn99/electron-widgets/HEAD/apps/web/tsconfig.json --------------------------------------------------------------------------------