From 17a562af0996d74247966dd78f7eea8bba0b0df9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=84min=20Baumeler?= Date: Wed, 20 May 2026 17:14:11 +0200 Subject: [PATCH] bugfix: typo in fd --- src/sh/mpv.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sh/mpv.sh b/src/sh/mpv.sh index b7a363e..ebced3e 100644 --- a/src/sh/mpv.sh +++ b/src/sh/mpv.sh @@ -80,7 +80,7 @@ mpv_start() { MPV_SOCKET="$(mktemp --suffix=.sock)" export MPV_SOCKET 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