Skip to content

Instantly share code, notes, and snippets.

@amydevs
Last active November 17, 2021 07:15
Show Gist options
  • Save amydevs/0a989fe45cd86afbe221351679083d57 to your computer and use it in GitHub Desktop.
Save amydevs/0a989fe45cd86afbe221351679083d57 to your computer and use it in GitHub Desktop.
Bash Script to Start "spotifyd" Alongside "spotify-tui" / "spt"
#!/bin/bash
### When saving this script, please run "chmod +x" on it to make it executable! ###
# Default behaviour is that "spotifyd' is killed when "spt" is closed.
# To make spotifyd continue running in the background, simple start the command with the "-b" argument.
keepSptdInBackground=false
POSITIONAL=()
while [[ $# -gt 0 ]]; do
key="$1"
case $key in
-b|--keep-in-background)
EXTENSION="$2"
keepSptdInBackground=true
shift # past argument
shift # past value
;;
*) # unknown option
POSITIONAL+=("$1") # save it in an array for later
shift
;;
esac
done
if $keepSptdInBackground;
then
spotifyd && spt
else
(spotifyd --no-daemon &> /dev/null) & spotifydPID="$!"
spt && kill $spotifydPID
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment