mirror of
https://github.com/vincentbernat/i3wm-configuration.git
synced 2025-06-25 11:18:33 +02:00
8 lines
191 B
Bash
Executable file
8 lines
191 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# 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
|