bugfix: typo in fd

This commit is contained in:
2026-05-20 17:14:11 +02:00
parent 94321c452c
commit 17a562af09
+1 -1
View File
@@ -80,7 +80,7 @@ mpv_start() {
MPV_SOCKET="$(mktemp --suffix=.sock)" MPV_SOCKET="$(mktemp --suffix=.sock)"
export MPV_SOCKET export MPV_SOCKET
trap 'mpv_quit >/dev/null; rm -f "$MPV_SOCKET"' EXIT INT trap 'mpv_quit >/dev/null; rm -f "$MPV_SOCKET"' EXIT INT
nohup $MPV --no-config --no-terminal --input-ipc-server="$MPV_SOCKET" --idle --no-osc --no-input-default-bindings >/dev/null 2&>1 & nohup $MPV --no-config --no-terminal --input-ipc-server="$MPV_SOCKET" --idle --no-osc --no-input-default-bindings >/dev/null 2>&1 &
} }
# Play the track at the specified index in the playlist # Play the track at the specified index in the playlist