aboutsummaryrefslogtreecommitdiff
path: root/raspberry/spotify.sh
diff options
context:
space:
mode:
authoreug-vs <eugene@eug-vs.xyz>2021-09-21 10:56:14 +0300
committereug-vs <eugene@eug-vs.xyz>2021-09-21 10:58:50 +0300
commit90b9522b15a692532d9b3f28acc417670144e3fa (patch)
tree546cccd97a5ee9c6069e09f616838be460b3bfed /raspberry/spotify.sh
parent19498a2dd5aa8edb95c216482b63ed947a903bcc (diff)
downloaddotfiles-90b9522b15a692532d9b3f28acc417670144e3fa.tar.gz
feat(rpi): separate display and master sessions
Diffstat (limited to 'raspberry/spotify.sh')
-rwxr-xr-xraspberry/spotify.sh18
1 files changed, 0 insertions, 18 deletions
diff --git a/raspberry/spotify.sh b/raspberry/spotify.sh
deleted file mode 100755
index bab2214..0000000
--- a/raspberry/spotify.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/sh
-
-SPOTIFYD_RELEASE_URL=https://github.com/Spotifyd/spotifyd/releases/download/v0.3.2/spotifyd-linux-armv6-slim.tar.gz
-
-# Download spotifyd binary
-if [ ! -f ~/.local/bin/spotifyd ]; then
- echo Spotifyd binary not found. Downloading...
- cd /tmp
- wget $SPOTIFYD_RELEASE_URL
- tar -xvzf spotifyd-*.tar.gz
- mv spotifyd ~/.local/bin
-fi
-
-# Start spotifyd with restart behavior
-while true; do
- spotifyd --no-daemon
- echo Restarting...
-done