From 69b1d19206d22e3826bf4dd1af8687b23ad7f223 Mon Sep 17 00:00:00 2001 From: Aminda Suomalainen Date: Fri, 15 Apr 2022 17:33:39 +0300 Subject: [PATCH] bash/usr-local-bin: add signal-desktop --- bash/usr-local-bin/signal-desktop | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 bash/usr-local-bin/signal-desktop diff --git a/bash/usr-local-bin/signal-desktop b/bash/usr-local-bin/signal-desktop new file mode 100755 index 0000000..caae496 --- /dev/null +++ b/bash/usr-local-bin/signal-desktop @@ -0,0 +1,9 @@ +#!/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 --ozone-platform=wayland --disable-gpu --use-tray-icon $@ +set +x