blob: 820d4e46a7641549421d623d76875b90189d4757 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- electron/lib/browser/init.ts.orig 2020-03-24 05:00:48 UTC
+++ electron/lib/browser/init.ts
@@ -165,7 +165,7 @@ const mainStartupScript = packageJson.main || 'index.j
const KNOWN_XDG_DESKTOP_VALUES = ['Pantheon', 'Unity:Unity7', 'pop:GNOME'];
function currentPlatformSupportsAppIndicator () {
- if (process.platform !== 'linux') return false;
+ if (process.platform !== 'linux' && process.platform !== 'freebsd') return false;
const currentDesktop = process.env.XDG_CURRENT_DESKTOP;
if (!currentDesktop) return false;
|