blob: df480c5941f048e77395539bcf5f957ed4ece9eb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- electron/lib/browser/init.ts.orig 2019-09-11 17:30:11 UTC
+++ electron/lib/browser/init.ts
@@ -174,7 +174,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
|