Skip to content

Instantly share code, notes, and snippets.

@silvernode
Last active June 21, 2018 21:14
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 silvernode/0d1698626ec6bfc55359fdf7aecd5c67 to your computer and use it in GitHub Desktop.
Save silvernode/0d1698626ec6bfc55359fdf7aecd5c67 to your computer and use it in GitHub Desktop.
custom script used to use tizonia
#!/bin/bash
DEVICE_ID=""
USERNAME=""
PASSWORD=""
echo -e "[1] Jimi Hendrix\n\n"
echo -e -n ">> "
read choice
if [ "${choice}" = "1" ];then
tizonia --gmusic-device-id ${DEVICE_ID} --gmusic-user ${USERNAME} --gmusic-password ${PASSWORD} --gmusic-unlimited-artist "jimi hendrix"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment