forked from gotbletu/shownotes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshell-fm.txt
24 lines (17 loc) · 845 Bytes
/
shell-fm.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 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