mirror of
https://github.com/vincentbernat/i3wm-configuration.git
synced 2025-08-03 17:54:31 +02:00
10 lines
229 B
Bash
Executable file
10 lines
229 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Kill all spotify streams, except the most recent one.
|
|
|
|
pw-cli dump short | grep spotify
|
|
pw-cli dump short client \
|
|
| grep -F 'ap="spotify"' \
|
|
| head -n-1 \
|
|
| cut -d: -f1 \
|
|
| xargs -rn1 pw-cli destroy
|