summarylogtreecommitdiffstats
path: root/start-hidden-in-tray.patch
blob: 52defae164eed644e648d55e686b97828b64b356 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
diff --git a/build/main.js b/build/main.js
index 5066eef..592a6bc 100644
--- a/build/main.js
+++ b/build/main.js
@@ -3122,8 +3122,12 @@
                   finalMinSize[1]
                 );
             }
-            isDev() ? this.window.showInactive() : this.window.show(),
-              this.thumbar.init();
+            if (!process.argv.some(arg => arg === '--start-in-tray')) {
+                isDev() ? this.window.showInactive() : this.window.show(),
+                  this.thumbar.init();
+            } else {
+              this.window.hide();
+            }
           }),
           this.appService.enableDevMode();
       }