Skip to content

Instantly share code, notes, and snippets.

@villamide
Last active October 20, 2017 08:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save villamide/1900c67dfeb8a250e2b8499a27136d46 to your computer and use it in GitHub Desktop.
Save villamide/1900c67dfeb8a250e2b8499a27136d46 to your computer and use it in GitHub Desktop.
Spotify Script - Launch instance or play / pause
#!/bin/bash
# If spotify is started play/pause music,
# else starts spotify
if [ $(pidof -s spotify) > /dev/null ]; then
playerctl play-pause
else
spotify
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment