You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
386 B
13 lines
386 B
#!/bin/bash
|
|
|
|
# see man zscroll for documentation of the following parameters
|
|
zscroll -l 30 \
|
|
--delay 0.1 \
|
|
--scroll-padding " " \
|
|
--match-command "`dirname $0`/get_spotify_status.sh --status" \
|
|
--match-text "Playing" "--scroll 1" \
|
|
--match-text "Paused" "--scroll 0" \
|
|
--update-check true "`dirname $0`/get_spotify_status.sh" &
|
|
|
|
wait
|