Initial commit
This commit is contained in:
commit
153479352c
18 changed files with 3402 additions and 0 deletions
10
bin/song
Executable file
10
bin/song
Executable file
|
@ -0,0 +1,10 @@
|
|||
#!/bin/bash
|
||||
|
||||
song=$(mpc --format "%position%\t%artist%\t%title%" playlist | sort | column -s" " -t | fzf)
|
||||
|
||||
if [ "$song" == "" ]
|
||||
then
|
||||
exit
|
||||
fi
|
||||
|
||||
mpc play $(echo $song | awk '{print $1}')
|
Loading…
Add table
Add a link
Reference in a new issue