├── .babelrc ├── .editorconfig ├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── app ├── App.js └── Preferences.js ├── index.html ├── lib ├── desktop.scpt ├── getWallpaper.scpt ├── hideapps.scpt ├── mute.scpt ├── notification.scpt ├── notifyUpdate.js ├── presentationMode.js ├── setWallpaper.scpt └── turnOff.scpt ├── main.js ├── package.json ├── preferences.html ├── static ├── css │ └── style.css └── img │ ├── activeIconTemplate.png │ ├── activeIconTemplate@2x.png │ ├── check.png │ ├── defaultWallpaper.png │ ├── iconTemplate.png │ └── iconTemplate@2x.png ├── webpack.config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zehfernandes/pliim/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zehfernandes/pliim/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zehfernandes/pliim/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zehfernandes/pliim/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zehfernandes/pliim/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zehfernandes/pliim/HEAD/README.md -------------------------------------------------------------------------------- /app/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zehfernandes/pliim/HEAD/app/App.js -------------------------------------------------------------------------------- /app/Preferences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zehfernandes/pliim/HEAD/app/Preferences.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zehfernandes/pliim/HEAD/index.html -------------------------------------------------------------------------------- /lib/desktop.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zehfernandes/pliim/HEAD/lib/desktop.scpt -------------------------------------------------------------------------------- /lib/getWallpaper.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zehfernandes/pliim/HEAD/lib/getWallpaper.scpt -------------------------------------------------------------------------------- /lib/hideapps.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zehfernandes/pliim/HEAD/lib/hideapps.scpt -------------------------------------------------------------------------------- /lib/mute.scpt: -------------------------------------------------------------------------------- 1 | # Mute 2 | 3 | set volume with output muted 4 | -------------------------------------------------------------------------------- /lib/notification.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zehfernandes/pliim/HEAD/lib/notification.scpt -------------------------------------------------------------------------------- /lib/notifyUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zehfernandes/pliim/HEAD/lib/notifyUpdate.js -------------------------------------------------------------------------------- /lib/presentationMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zehfernandes/pliim/HEAD/lib/presentationMode.js -------------------------------------------------------------------------------- /lib/setWallpaper.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zehfernandes/pliim/HEAD/lib/setWallpaper.scpt -------------------------------------------------------------------------------- /lib/turnOff.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zehfernandes/pliim/HEAD/lib/turnOff.scpt -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zehfernandes/pliim/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zehfernandes/pliim/HEAD/package.json -------------------------------------------------------------------------------- /preferences.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zehfernandes/pliim/HEAD/preferences.html -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zehfernandes/pliim/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/img/activeIconTemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zehfernandes/pliim/HEAD/static/img/activeIconTemplate.png -------------------------------------------------------------------------------- /static/img/activeIconTemplate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zehfernandes/pliim/HEAD/static/img/activeIconTemplate@2x.png -------------------------------------------------------------------------------- /static/img/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zehfernandes/pliim/HEAD/static/img/check.png -------------------------------------------------------------------------------- /static/img/defaultWallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zehfernandes/pliim/HEAD/static/img/defaultWallpaper.png -------------------------------------------------------------------------------- /static/img/iconTemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zehfernandes/pliim/HEAD/static/img/iconTemplate.png -------------------------------------------------------------------------------- /static/img/iconTemplate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zehfernandes/pliim/HEAD/static/img/iconTemplate@2x.png -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zehfernandes/pliim/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zehfernandes/pliim/HEAD/yarn.lock --------------------------------------------------------------------------------