You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
845 B
Plaintext

# this is notes for video: http://www.youtube.com/watch?v=HC5oqDpMXg0
#------------------------------------------////
# Shell-FM
#------------------------------------------////
alias cfg-shellfm='$EDITOR ~/.shell-fm/shell-fm.rc' # config settings
sfm-artist() { link=$(echo "lastfm://artist/$@" | sed 's/ /+/g'); shell-fm $link ;}
sfm-user() { link=$(echo "lastfm://user/$@" | sed 's/ /+/g'); shell-fm $link ;}
sfm-globaltags() { link=$(echo "lastfm://globaltags/$@" | sed 's/ /+/g'); shell-fm $link ;}
sfm-tag() { link=$(echo "lastfm://tag/$@" | sed 's/ /+/g'); shell-fm $link ;}
# lastfm://user/$USER/loved
# lastfm://user/$USER/personal
# lastfm://usertags/$USER/$TAG
# lastfm://artist/$ARTIST/similarartists
# lastfm://globaltags/$TAG
# lastfm://user/$USER/recommended
# lastfm://user/$USER/playlist
# lastfm://tag/$TAG1*$TAG2*$TAG3