├── .editorconfig ├── .gitignore ├── .prettierrc.yml ├── README.md ├── esbuild.js ├── eslint.config.js ├── index.d.ts ├── package.json ├── run-gnome.sh ├── src ├── extension.ts ├── icon.png ├── manager.ts ├── metadata.json ├── sound.ts ├── sounds │ ├── Coffee_Shop.ogg │ ├── Fireplace.ogg │ ├── Rain.ogg │ ├── Summer_Night.ogg │ ├── White_Noise.ogg │ ├── Wind.ogg │ └── database.json └── stylesheet.css └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armonge/gnome-shell-extension-focusli/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armonge/gnome-shell-extension-focusli/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armonge/gnome-shell-extension-focusli/HEAD/.prettierrc.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armonge/gnome-shell-extension-focusli/HEAD/README.md -------------------------------------------------------------------------------- /esbuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armonge/gnome-shell-extension-focusli/HEAD/esbuild.js -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armonge/gnome-shell-extension-focusli/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armonge/gnome-shell-extension-focusli/HEAD/index.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armonge/gnome-shell-extension-focusli/HEAD/package.json -------------------------------------------------------------------------------- /run-gnome.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armonge/gnome-shell-extension-focusli/HEAD/run-gnome.sh -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armonge/gnome-shell-extension-focusli/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armonge/gnome-shell-extension-focusli/HEAD/src/icon.png -------------------------------------------------------------------------------- /src/manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armonge/gnome-shell-extension-focusli/HEAD/src/manager.ts -------------------------------------------------------------------------------- /src/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armonge/gnome-shell-extension-focusli/HEAD/src/metadata.json -------------------------------------------------------------------------------- /src/sound.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armonge/gnome-shell-extension-focusli/HEAD/src/sound.ts -------------------------------------------------------------------------------- /src/sounds/Coffee_Shop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armonge/gnome-shell-extension-focusli/HEAD/src/sounds/Coffee_Shop.ogg -------------------------------------------------------------------------------- /src/sounds/Fireplace.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armonge/gnome-shell-extension-focusli/HEAD/src/sounds/Fireplace.ogg -------------------------------------------------------------------------------- /src/sounds/Rain.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armonge/gnome-shell-extension-focusli/HEAD/src/sounds/Rain.ogg -------------------------------------------------------------------------------- /src/sounds/Summer_Night.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armonge/gnome-shell-extension-focusli/HEAD/src/sounds/Summer_Night.ogg -------------------------------------------------------------------------------- /src/sounds/White_Noise.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armonge/gnome-shell-extension-focusli/HEAD/src/sounds/White_Noise.ogg -------------------------------------------------------------------------------- /src/sounds/Wind.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armonge/gnome-shell-extension-focusli/HEAD/src/sounds/Wind.ogg -------------------------------------------------------------------------------- /src/sounds/database.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armonge/gnome-shell-extension-focusli/HEAD/src/sounds/database.json -------------------------------------------------------------------------------- /src/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armonge/gnome-shell-extension-focusli/HEAD/src/stylesheet.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armonge/gnome-shell-extension-focusli/HEAD/tsconfig.json --------------------------------------------------------------------------------