mirror of
https://gitea.blesmrt.net/mikaela/scripts.git
synced 2024-11-26 21:19:29 +01:00
11 lines
435 B
Bash
Executable File
11 lines
435 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# The usual Electron flags: --disable-gpu --enable-features=UseOzonePlatform,WaylandWindowDecorations,WebRTCPipeWireCapturer --ozone-platform=wayland
|
|
|
|
# https://github.com/deltachat/deltachat-desktop/issues/2800
|
|
# Wayland would be enabled by: --enable-features=UseOzonePlatform,WaylandWindowDecorations,WebRTCPipeWireCapturer --ozone-platform=wayland
|
|
|
|
set -x
|
|
flatpak run chat.delta.desktop --disable-gpu $@
|
|
set +x
|