-
-
Save amydevs/0a989fe45cd86afbe221351679083d57 to your computer and use it in GitHub Desktop.
Bash Script to Start "spotifyd" Alongside "spotify-tui" / "spt"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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