dotfiles/.local/bin/scripts/fmpc

9 lines
324 B
Text
Raw Normal View History

2022-06-27 13:03:11 +02:00
#!/bin/sh -e
2021-10-15 13:44:15 +02:00
# Select a song in the mpd queue using fzf and mpc
2022-06-27 13:03:11 +02:00
# depends: fzy/fzf-tmux mpc
song_position=$(mpc -f "%position%) %artist% - %title%" playlist |
#fzy --query="$1" |
fzf-tmux --query="$1" --reverse --select-1 --exit-0 |
sed -n 's/^\([0-9]\+\)).*/\1/p')
2021-10-16 10:46:54 +02:00
test -n "$song_position" && mpc play $song_position