├── .gitignore ├── CONTRIBUTING.md ├── README.md ├── app ├── css │ ├── center.css │ ├── colors-wal.css │ ├── colors.css │ ├── common.css │ ├── flat.css │ ├── float.css │ ├── mono.css │ └── settings.css ├── index.html ├── js │ ├── index.js │ ├── require │ │ ├── appProcess.js │ │ ├── externalModule.js │ │ ├── itunes.js │ │ ├── moduleManager.js │ │ ├── modules │ │ │ ├── battery.js │ │ │ ├── chunkwm.js │ │ │ ├── date.js │ │ │ ├── desktop.js │ │ │ ├── launcher.js │ │ │ ├── player.js │ │ │ ├── settings.js │ │ │ ├── taskbar.js │ │ │ ├── time.js │ │ │ ├── volume.js │ │ │ └── wifi.js │ │ ├── mpd.js │ │ ├── spotify.js │ │ ├── taskMonitor.js │ │ └── utils.js │ └── settings.js ├── settings.html └── sh │ ├── getcharge.sh │ ├── getdesktop.sh │ ├── getvolume.sh │ ├── ischarging.sh │ ├── ismuted.sh │ ├── makeCommand.sh │ └── makeIcon.sh ├── demo ├── full.png ├── justthebar.png ├── popup-demo.gif ├── theme1.png ├── theme2.png ├── theme3.png ├── theme4.png ├── widg1.png ├── widg2.png └── widg5.png ├── main.js ├── package.json └── test └── test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/README.md -------------------------------------------------------------------------------- /app/css/center.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/app/css/center.css -------------------------------------------------------------------------------- /app/css/colors-wal.css: -------------------------------------------------------------------------------- 1 | /Users/riccardofadiga/.cache/wal/colors.css -------------------------------------------------------------------------------- /app/css/colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/app/css/colors.css -------------------------------------------------------------------------------- /app/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/app/css/common.css -------------------------------------------------------------------------------- /app/css/flat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/app/css/flat.css -------------------------------------------------------------------------------- /app/css/float.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/app/css/float.css -------------------------------------------------------------------------------- /app/css/mono.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/app/css/mono.css -------------------------------------------------------------------------------- /app/css/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/app/css/settings.css -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/app/index.html -------------------------------------------------------------------------------- /app/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/app/js/index.js -------------------------------------------------------------------------------- /app/js/require/appProcess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/app/js/require/appProcess.js -------------------------------------------------------------------------------- /app/js/require/externalModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/app/js/require/externalModule.js -------------------------------------------------------------------------------- /app/js/require/itunes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/app/js/require/itunes.js -------------------------------------------------------------------------------- /app/js/require/moduleManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/app/js/require/moduleManager.js -------------------------------------------------------------------------------- /app/js/require/modules/battery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/app/js/require/modules/battery.js -------------------------------------------------------------------------------- /app/js/require/modules/chunkwm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/app/js/require/modules/chunkwm.js -------------------------------------------------------------------------------- /app/js/require/modules/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/app/js/require/modules/date.js -------------------------------------------------------------------------------- /app/js/require/modules/desktop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/app/js/require/modules/desktop.js -------------------------------------------------------------------------------- /app/js/require/modules/launcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/app/js/require/modules/launcher.js -------------------------------------------------------------------------------- /app/js/require/modules/player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/app/js/require/modules/player.js -------------------------------------------------------------------------------- /app/js/require/modules/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/app/js/require/modules/settings.js -------------------------------------------------------------------------------- /app/js/require/modules/taskbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/app/js/require/modules/taskbar.js -------------------------------------------------------------------------------- /app/js/require/modules/time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/app/js/require/modules/time.js -------------------------------------------------------------------------------- /app/js/require/modules/volume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/app/js/require/modules/volume.js -------------------------------------------------------------------------------- /app/js/require/modules/wifi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/app/js/require/modules/wifi.js -------------------------------------------------------------------------------- /app/js/require/mpd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/app/js/require/mpd.js -------------------------------------------------------------------------------- /app/js/require/spotify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/app/js/require/spotify.js -------------------------------------------------------------------------------- /app/js/require/taskMonitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/app/js/require/taskMonitor.js -------------------------------------------------------------------------------- /app/js/require/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/app/js/require/utils.js -------------------------------------------------------------------------------- /app/js/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/app/js/settings.js -------------------------------------------------------------------------------- /app/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/app/settings.html -------------------------------------------------------------------------------- /app/sh/getcharge.sh: -------------------------------------------------------------------------------- 1 | pmset -g batt | egrep '([0-9]+\%).*' -o --colour=auto | cut -f1 -d';' 2 | -------------------------------------------------------------------------------- /app/sh/getdesktop.sh: -------------------------------------------------------------------------------- 1 | echo $(/usr/local/bin/chunkc tiling::query -d id) 2 | -------------------------------------------------------------------------------- /app/sh/getvolume.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/app/sh/getvolume.sh -------------------------------------------------------------------------------- /app/sh/ischarging.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/app/sh/ischarging.sh -------------------------------------------------------------------------------- /app/sh/ismuted.sh: -------------------------------------------------------------------------------- 1 | osascript -e 'output muted of (get volume settings)' 2 | -------------------------------------------------------------------------------- /app/sh/makeCommand.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/app/sh/makeCommand.sh -------------------------------------------------------------------------------- /app/sh/makeIcon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/app/sh/makeIcon.sh -------------------------------------------------------------------------------- /demo/full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/demo/full.png -------------------------------------------------------------------------------- /demo/justthebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/demo/justthebar.png -------------------------------------------------------------------------------- /demo/popup-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/demo/popup-demo.gif -------------------------------------------------------------------------------- /demo/theme1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/demo/theme1.png -------------------------------------------------------------------------------- /demo/theme2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/demo/theme2.png -------------------------------------------------------------------------------- /demo/theme3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/demo/theme3.png -------------------------------------------------------------------------------- /demo/theme4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/demo/theme4.png -------------------------------------------------------------------------------- /demo/widg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/demo/widg1.png -------------------------------------------------------------------------------- /demo/widg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/demo/widg2.png -------------------------------------------------------------------------------- /demo/widg5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/demo/widg5.png -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/package.json -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blahsd/snwe/HEAD/test/test.js --------------------------------------------------------------------------------