From ec59ea0c9c465aaee9f8e7fed67f6db79bb743f7 Mon Sep 17 00:00:00 2001 From: Wis Date: Wed, 8 Apr 2020 00:29:12 +0300 Subject: [PATCH] fix pauseallmpv: correct paths to unix socket files --- .local/bin/pauseallmpv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.local/bin/pauseallmpv b/.local/bin/pauseallmpv index 85a7032c..15b9f599 100755 --- a/.local/bin/pauseallmpv +++ b/.local/bin/pauseallmpv @@ -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