|
@@ -16,6 +16,11 @@ async function createWindow() {
|
|
|
width: 800,
|
|
|
height: 600,
|
|
|
darkTheme: true,
|
|
|
+ minWidth: 710,
|
|
|
+ minHeight: 500,
|
|
|
+ show: false,
|
|
|
+ backgroundColor: '#211f1d',
|
|
|
+ skipTaskbar:true,
|
|
|
webPreferences: {
|
|
|
webSecurity: false,
|
|
|
enableRemoteModule: true,
|
|
@@ -44,6 +49,9 @@ async function createWindow() {
|
|
|
|
|
|
|
|
|
|
|
|
+ win.on('ready-to-show', function () {
|
|
|
+ win.show()
|
|
|
+ })
|
|
|
}
|
|
|
|
|
|
globalShortcut.register('CommandOrControl+Shift+i', function () {
|