Move Spotify to optional service install

This commit is contained in:
David Heinemeier Hansson
2026-05-25 18:12:40 +02:00
parent 59ef9c44f7
commit 0ff8b5eece
6 changed files with 41 additions and 2 deletions
+15
View File
@@ -0,0 +1,15 @@
#!/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."