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