distribution/packages/jelos/sources/scripts/manage_mpv.sh

30 lines
499 B
Bash
Raw Normal View History

2022-02-05 14:23:32 +00:00
#!/bin/bash
# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (C) 2020-present ShantiGilbert, RedWolfTech, Fewtarius
function sendkey() {
echo '{"command":["keypress", "'${1}'"]}' | socat - "/tmp/mpvsocket"
}
case "$1" in
"pause")
sendkey "p"
;;
"skip5s")
sendkey "RIGHT"
;;
"back5s")
sendkey "LEFT"
;;
"skip60s")
sendkey "UP"
;;
"back60s")
sendkey "DOWN"
;;
"quit")
sendkey "q"
;;
esac