mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
16 lines
288 B
Bash
Executable File
16 lines
288 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Install Signal and launch it.
|
|
# omarchy:requires-sudo=true
|
|
|
|
set -e
|
|
|
|
echo "Installing Signal..."
|
|
omarchy-pkg-add signal-desktop
|
|
|
|
echo "Opening Signal..."
|
|
setsid uwsm-app -- /usr/bin/signal-desktop >/dev/null 2>&1 &
|
|
|
|
echo ""
|
|
echo "Signal has been installed."
|