mirror of
https://github.com/ksyasuda/rice.git
synced 2024-10-28 09:04:10 -07:00
19 lines
414 B
Bash
Executable File
19 lines
414 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
## display currently playing/paused song with zscroll
|
|
## no output when mpd is stopped
|
|
|
|
if ! mpc >/dev/null 2>&1; then
|
|
exit 1
|
|
else
|
|
(
|
|
mpc current | zscroll -l 30 --delay 0.3 \
|
|
--match-command "mpc status" \
|
|
--match-text "playing" "--before-text ' '" \
|
|
--match-text "paused" "--before-text '契 ' --scroll 0" \
|
|
--update-check true "mpc current" &
|
|
) &
|
|
fi
|
|
|
|
mpc idle >/dev/null
|