fix pauseallmpv: correct paths to unix socket files

This commit is contained in:
Wis 2020-04-08 00:29:12 +03:00
parent 3676be3fd4
commit ec59ea0c9c

View File

@ -5,6 +5,6 @@
# every single one of them with one command! This is bound to super + shift + p
# (with other things) by default and is used in some other places.
for i in $(ls /tmp/mpvsoc*); do
for i in $(ls /tmp/mpvSockets/*); do
echo '{ "command": ["set_property", "pause", true] }' | socat - $i;
done