diff options
author | Devine Lu Linvega <[email protected]> | 2019-01-12 11:19:52 +1200 |
---|---|---|
committer | Devine Lu Linvega <[email protected]> | 2019-01-12 11:19:52 +1200 |
commit | 187b5a2665cad8fb6628e925adcc53b5ce71ff0c (patch) | |
tree | f9cf380ce4545eb3abdd3c6c43384f48c5843614 /desktop/main.js | |
parent | c232770fa6c0062acde8481117d45f55f23b9399 (diff) | |
download | Orca-187b5a2665cad8fb6628e925adcc53b5ce71ff0c.tar.gz Orca-187b5a2665cad8fb6628e925adcc53b5ce71ff0c.zip |
Transparent mode
Diffstat (limited to 'desktop/main.js')
-rw-r--r-- | desktop/main.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/desktop/main.js b/desktop/main.js index 320c223..6aebf62 100644 --- a/desktop/main.js +++ b/desktop/main.js @@ -14,11 +14,11 @@ app.on('ready', () => { minWidth: 320, minHeight: 320, frame: false, - autoHideMenuBar: true, - backgroundColor: '#000000', resizable: true, - autoHideMenuBar: true, - icon: __dirname + '/icon.ico' + icon: __dirname + '/icon.ico', + transparent: true, + skipTaskbar: true, + autoHideMenuBar: true }) app.win.loadURL(`file://${__dirname}/sources/index.html`) |