5 lines
152 B
Text
5 lines
152 B
Text
|
#!/bin/bash
|
||
|
# Sends a , key to all mpv instances, pausing them at the last frame.
|
||
|
|
||
|
xdotool search --class mpv | xargs -I % xdotool key --window % comma
|