Merge pull request #12844 from didrocks/fix-communitheme-session
fix: support multiple inherited ubuntu session for indicators
This commit is contained in:
Коммит
2b26206ea2
|
@ -162,8 +162,23 @@ require('./api/protocol')
|
||||||
// Set main startup script of the app.
|
// Set main startup script of the app.
|
||||||
const mainStartupScript = packageJson.main || 'index.js'
|
const mainStartupScript = packageJson.main || 'index.js'
|
||||||
|
|
||||||
|
const KNOWN_XDG_DESKTOP_VALUES = ['Pantheon', 'Unity:Unity7', 'pop:GNOME']
|
||||||
|
|
||||||
|
function currentPlatformSupportsAppIndicator () {
|
||||||
|
if (process.platform !== 'linux') return false
|
||||||
|
const currentDesktop = process.env.XDG_CURRENT_DESKTOP
|
||||||
|
|
||||||
|
if (!currentDesktop) return false
|
||||||
|
if (KNOWN_XDG_DESKTOP_VALUES.includes(currentDesktop)) return true
|
||||||
|
// ubuntu based or derived session (default ubuntu one, communitheme…) supports
|
||||||
|
// indicator too.
|
||||||
|
if (/ubuntu/ig.test(currentDesktop)) return true
|
||||||
|
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
// Workaround for electron/electron#5050 and electron/electron#9046
|
// Workaround for electron/electron#5050 and electron/electron#9046
|
||||||
if (process.platform === 'linux' && ['Pantheon', 'Unity:Unity7', 'ubuntu:GNOME', 'pop:GNOME'].includes(process.env.XDG_CURRENT_DESKTOP)) {
|
if (currentPlatformSupportsAppIndicator()) {
|
||||||
process.env.XDG_CURRENT_DESKTOP = 'Unity'
|
process.env.XDG_CURRENT_DESKTOP = 'Unity'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче