├── README.md ├── index.js ├── package.json └── screenshot.jpg /README.md: -------------------------------------------------------------------------------- 1 | # hyper-simple-vibrancy 2 | 3 | 4 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports.onWindow = browserWindow => browserWindow.setVibrancy('dark'); 2 | 3 | module.exports.decorateConfig = config => { 4 | config.backgroundColor = 'rgba(0,0,0,.5)'; 5 | return config; 6 | } 7 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hyper-simple-vibrancy", 3 | "version": "0.1.0", 4 | "description": "Simple plguin to demonstrate the vibrancy capabilites of Hyper", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "author": "Matheus Fernandes (https://matheus.top/)", 10 | "license": "MIT", 11 | "repository": "matheuss/hyper-simple-vibrancy" 12 | } 13 | -------------------------------------------------------------------------------- /screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheuss/hyper-simple-vibrancy/f597d8382a29a448fdd4561d0e4b149ae6b43c7c/screenshot.jpg --------------------------------------------------------------------------------