├── images ├── oh.png ├── oh@2x.png ├── hidden.png ├── visible.png ├── hidden@2x.png └── visible@2x.png ├── .gitignore ├── package.json ├── README.md └── index.js /images/oh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddharthkp/toggle-icons/HEAD/images/oh.png -------------------------------------------------------------------------------- /images/oh@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddharthkp/toggle-icons/HEAD/images/oh@2x.png -------------------------------------------------------------------------------- /images/hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddharthkp/toggle-icons/HEAD/images/hidden.png -------------------------------------------------------------------------------- /images/visible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddharthkp/toggle-icons/HEAD/images/visible.png -------------------------------------------------------------------------------- /images/hidden@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddharthkp/toggle-icons/HEAD/images/hidden@2x.png -------------------------------------------------------------------------------- /images/visible@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddharthkp/toggle-icons/HEAD/images/visible@2x.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | *.log 3 | npm-debug.log* 4 | 5 | # Dependency directories 6 | node_modules/ 7 | 8 | # Optional npm cache directory 9 | .npm 10 | 11 | # dotenv environment variables file 12 | .env 13 | 14 | releases 15 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "toggle-icons", 3 | "productName": "Toggle Icons", 4 | "version": "1.0.0", 5 | "description": "", 6 | "main": "index.js", 7 | "dependencies": { 8 | "execa": "0.10.0", 9 | "menubar": "5.2.3" 10 | }, 11 | "devDependencies": { 12 | "electron": "2.0.4", 13 | "electron-packager": "12.1.0", 14 | "electron-reload": "1.2.5" 15 | }, 16 | "scripts": { 17 | "dev": "electron .", 18 | "build": "electron-packager . --out releases --overwrite --files=[images/*] --icon=build/icon.icns" 19 | }, 20 | "keywords": [], 21 | "author": "siddharthkp", 22 | "license": "MIT" 23 | } 24 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 | show/hide icons on your desktop
5 |
6 |