mirror of
https://github.com/smartfrigde/armcord.git
synced 2024-08-14 23:56:58 +00:00
Make window decorations work on Gnome Wayland
This commit is contained in:
parent
3e8526f0f7
commit
4c8cd2bf57
1 changed files with 5 additions and 1 deletions
|
@ -15,8 +15,12 @@ export var tabs: boolean;
|
|||
if (process.platform == "linux") {
|
||||
if (process.env.$XDG_SESSION_TYPE == "wayland") {
|
||||
console.log("Wayland specific patches applied.")
|
||||
app.commandLine.appendSwitch("enable-features=UseOzonePlatform");
|
||||
app.commandLine.appendSwitch("ozone-platform=wayland");
|
||||
if (process.env.$XDG_CURRENT_DESKTOP == "GNOME") {
|
||||
app.commandLine.appendSwitch("enable-features=UseOzonePlatform,WaylandWindowDecorations");
|
||||
} else {
|
||||
app.commandLine.appendSwitch("enable-features=UseOzonePlatform");
|
||||
}
|
||||
}
|
||||
}
|
||||
checkIfConfigExists();
|
||||
|
|
Loading…
Reference in a new issue