vincentbernat.i3wm-configur.../bin/spotify-clean

9 lines
191 B
Text
Raw Normal View History

#!/bin/sh
2021-09-10 10:50:58 +02:00
# Kill all spotify streams, except the most recent one.
pactl list short clients \
| awk '($3 == "spotify") {print $1}' \
| head -n-1 \
| xargs -rn1 pacmd kill-client