mirror of
https://gitea.blesmrt.net/mikaela/scripts.git
synced 2024-11-05 00:59:22 +01:00
10 lines
428 B
Bash
Executable File
10 lines
428 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Signal desktop with Wayland, notification fix & tray
|
|
|
|
set -x
|
|
# --disable-gpu - https://github.com/signalapp/Signal-Desktop/issues/2567#issuecomment-457282578
|
|
# --start-in-tray - would be nice, but then I cannot open it from there, trus --use-tray-icon
|
|
flatpak run org.signal.Signal --enable-features=UseOzonePlatform,WebRTCPipeWireCapturer --ozone-platform=wayland --disable-gpu --use-tray-icon $@
|
|
set +x
|