mirror of
https://github.com/vincentbernat/i3wm-configuration.git
synced 2025-07-01 13:54:22 +02:00
10 lines
210 B
Bash
Executable file
10 lines
210 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Kill all spotify streams, except the most recent (old?) one.
|
|
|
|
exit 0
|
|
pw-cli dump short client \
|
|
| grep -F 'ap="spotify"' \
|
|
| tail -n+2 \
|
|
| cut -d: -f1 \
|
|
| xargs -rn1 pw-cli destroy
|