blob: 74e0bfdab1aa2d99102f3da92302005e2ed5505d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
# see man zscroll for documentation of the following parameters
zscroll -l 20 \
--delay 0.1 \
--scroll-padding " " \
--match-command "$HOME/.config/polybar/scripts/get_spotify_status.sh --status" \
--match-text "Playing" "--scroll 1" \
--match-text "Paused" "--scroll 0" \
--update-check true "$HOME/.config/polybar/scripts/get_spotify_status.sh" &
wait
|