diff options
| author | Luke Smith <luke@lukesmith.xyz> | 2019-06-01 16:09:29 -0400 |
|---|---|---|
| committer | Luke Smith <luke@lukesmith.xyz> | 2019-06-01 16:09:29 -0400 |
| commit | 12fa56ed0e9d4d25f7cae0dd98e31a3f205f4907 (patch) | |
| tree | 1a57fc95bfceee9de0afb088191529c533d97e0b /.local/bin/pauseallmpv | |
| parent | 9391af624c07382663474f36573b8cbd87d78090 (diff) | |
| download | eibhear-12fa56ed0e9d4d25f7cae0dd98e31a3f205f4907.tar.gz eibhear-12fa56ed0e9d4d25f7cae0dd98e31a3f205f4907.tar.zst eibhear-12fa56ed0e9d4d25f7cae0dd98e31a3f205f4907.zip | |
pauseallmpv dox
Diffstat (limited to '.local/bin/pauseallmpv')
| -rwxr-xr-x | .local/bin/pauseallmpv | 6 |
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 |
