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.
19 lines
428 B
Plaintext
19 lines
428 B
Plaintext
2 years ago
|
#!/usr/bin/env bash
|
||
|
|
||
|
if [[ "$1" == "--toggle" ]] ; then
|
||
|
playerctl play-pause
|
||
|
fi
|
||
|
|
||
|
if [[ "$1" == "--scroll" ]] ; then
|
||
|
zscroll -l $2 \
|
||
|
-p " " \
|
||
|
--delay 0.5 \
|
||
|
--update-check true \
|
||
|
--match-command "playerctl status" \
|
||
|
--match-text "Playing" "--scroll 1" \
|
||
|
--match-text "Paused" "--scroll 0" \
|
||
|
"playerctl metadata --format '{{artist}} - {{title}}'" &
|
||
|
wait
|
||
|
fi
|
||
|
|