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