Last active
June 21, 2018 21:14
-
-
Save silvernode/0d1698626ec6bfc55359fdf7aecd5c67 to your computer and use it in GitHub Desktop.
custom script used to use tizonia
This file contains hidden or 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 | |
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