mirror of
https://github.com/vincentbernat/i3wm-configuration.git
synced 2025-07-01 22:04:20 +02:00
7 lines
147 B
Bash
Executable file
7 lines
147 B
Bash
Executable file
#!/bin/sh
|
|
|
|
pactl list short clients \
|
|
| awk '($3 == "spotify") {print $1}' \
|
|
| sort -n \
|
|
| head -n-1 \
|
|
| xargs -rn1 pw-cli destroy
|