mirror of
https://gitea.blesmrt.net/mikaela/scripts.git
synced 2024-11-23 03:39:23 +01:00
10 lines
453 B
Plaintext
10 lines
453 B
Plaintext
|
#!/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,WaylandWindowDecorations,WebRTCPipeWireCapturer --ozone-platform=wayland --disable-gpu --use-tray-icon $@
|
||
|
set +x
|