keys configurable, multiple keys support, decreasesd fzf processes

This commit is contained in:
2025-08-27 17:38:11 +02:00
parent 9aa1413a51
commit a1ae20fa82
5 changed files with 157 additions and 368 deletions

View File

@@ -37,7 +37,7 @@ mpv_quit() {
mpv_start() {
MPV_SOCKET="$(mktemp --suffix=.sock)"
trap 'mpv_quit; rm -f "$MPV_SOCKET"' EXIT INT
trap 'mpv_quit >/dev/null; rm -f "$MPV_SOCKET"' EXIT INT
$MPV --no-config --no-terminal --input-ipc-server="$MPV_SOCKET" --idle --no-osc --no-input-default-bindings &
}