summaryrefslogtreecommitdiffstats
path: root/.local/bin
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2019-06-01 16:09:29 -0400
committerLuke Smith <luke@lukesmith.xyz>2019-06-01 16:09:29 -0400
commit12fa56ed0e9d4d25f7cae0dd98e31a3f205f4907 (patch)
tree1a57fc95bfceee9de0afb088191529c533d97e0b /.local/bin
parent9391af624c07382663474f36573b8cbd87d78090 (diff)
downloadeibhear-12fa56ed0e9d4d25f7cae0dd98e31a3f205f4907.tar.gz
eibhear-12fa56ed0e9d4d25f7cae0dd98e31a3f205f4907.tar.zst
eibhear-12fa56ed0e9d4d25f7cae0dd98e31a3f205f4907.zip
pauseallmpv dox
Diffstat (limited to '.local/bin')
-rwxr-xr-x.local/bin/pauseallmpv6
1 files changed, 6 insertions, 0 deletions
diff --git a/.local/bin/pauseallmpv b/.local/bin/pauseallmpv
index c5da220..85a7032 100755
--- a/.local/bin/pauseallmpv
+++ b/.local/bin/pauseallmpv
@@ -1,4 +1,10 @@
#!/bin/sh
+
+# You might notice all mpv commands are aliased to have this input-ipc-server
+# thing. That's just for this particular command, which allows us to pause
+# 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
echo '{ "command": ["set_property", "pause", true] }' | socat - $i;
done