mirror of
https://github.com/vincentbernat/i3wm-configuration.git
synced 2025-06-29 21:04:21 +02:00
6 lines
134 B
Bash
Executable file
6 lines
134 B
Bash
Executable file
#!/bin/sh
|
|
|
|
pactl list short clients \
|
|
| awk '($3 == "spotify") {print $1}' \
|
|
| head -n-1 \
|
|
| xargs -rn1 pacmd kill-client
|