├── .gitignore ├── .travis.yml ├── LICENSE.md ├── app ├── css │ └── app.css ├── img │ ├── cafe.jpg │ ├── close.png │ ├── drops.jpg │ ├── fire.jpg │ ├── foco.png │ ├── iconTemplate@2x.png │ ├── image.jpg │ ├── mute.png │ ├── night.jpeg │ ├── rain.jpg │ └── unmute.png ├── index.html ├── index.js ├── js │ ├── app.js │ └── template.js ├── package-lock.json ├── package.json └── resources │ ├── icons │ ├── icon.icns │ ├── icon.ico │ ├── icon.png │ └── iconlinux.png │ └── sound │ ├── cafe.mp3 │ ├── drops.mp3 │ ├── fire.mp3 │ ├── night.mp3 │ └── rain.mp3 ├── appveyor.yml ├── design └── design.png ├── npm-debug.log ├── package.json └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | *.app 4 | dist 5 | Plugin.sketch 6 | yarn.lock 7 | *npm-debug.log -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashnimare/foco/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashnimare/foco/HEAD/LICENSE.md -------------------------------------------------------------------------------- /app/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashnimare/foco/HEAD/app/css/app.css -------------------------------------------------------------------------------- /app/img/cafe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashnimare/foco/HEAD/app/img/cafe.jpg -------------------------------------------------------------------------------- /app/img/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashnimare/foco/HEAD/app/img/close.png -------------------------------------------------------------------------------- /app/img/drops.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashnimare/foco/HEAD/app/img/drops.jpg -------------------------------------------------------------------------------- /app/img/fire.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashnimare/foco/HEAD/app/img/fire.jpg -------------------------------------------------------------------------------- /app/img/foco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashnimare/foco/HEAD/app/img/foco.png -------------------------------------------------------------------------------- /app/img/iconTemplate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashnimare/foco/HEAD/app/img/iconTemplate@2x.png -------------------------------------------------------------------------------- /app/img/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashnimare/foco/HEAD/app/img/image.jpg -------------------------------------------------------------------------------- /app/img/mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashnimare/foco/HEAD/app/img/mute.png -------------------------------------------------------------------------------- /app/img/night.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashnimare/foco/HEAD/app/img/night.jpeg -------------------------------------------------------------------------------- /app/img/rain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashnimare/foco/HEAD/app/img/rain.jpg -------------------------------------------------------------------------------- /app/img/unmute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashnimare/foco/HEAD/app/img/unmute.png -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashnimare/foco/HEAD/app/index.html -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashnimare/foco/HEAD/app/index.js -------------------------------------------------------------------------------- /app/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashnimare/foco/HEAD/app/js/app.js -------------------------------------------------------------------------------- /app/js/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashnimare/foco/HEAD/app/js/template.js -------------------------------------------------------------------------------- /app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashnimare/foco/HEAD/app/package-lock.json -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashnimare/foco/HEAD/app/package.json -------------------------------------------------------------------------------- /app/resources/icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashnimare/foco/HEAD/app/resources/icons/icon.icns -------------------------------------------------------------------------------- /app/resources/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashnimare/foco/HEAD/app/resources/icons/icon.ico -------------------------------------------------------------------------------- /app/resources/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashnimare/foco/HEAD/app/resources/icons/icon.png -------------------------------------------------------------------------------- /app/resources/icons/iconlinux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashnimare/foco/HEAD/app/resources/icons/iconlinux.png -------------------------------------------------------------------------------- /app/resources/sound/cafe.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashnimare/foco/HEAD/app/resources/sound/cafe.mp3 -------------------------------------------------------------------------------- /app/resources/sound/drops.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashnimare/foco/HEAD/app/resources/sound/drops.mp3 -------------------------------------------------------------------------------- /app/resources/sound/fire.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashnimare/foco/HEAD/app/resources/sound/fire.mp3 -------------------------------------------------------------------------------- /app/resources/sound/night.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashnimare/foco/HEAD/app/resources/sound/night.mp3 -------------------------------------------------------------------------------- /app/resources/sound/rain.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashnimare/foco/HEAD/app/resources/sound/rain.mp3 -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashnimare/foco/HEAD/appveyor.yml -------------------------------------------------------------------------------- /design/design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashnimare/foco/HEAD/design/design.png -------------------------------------------------------------------------------- /npm-debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashnimare/foco/HEAD/npm-debug.log -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashnimare/foco/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashnimare/foco/HEAD/readme.md --------------------------------------------------------------------------------