Received: from out1.migadu.com (out1.migadu.com [91.121.223.63]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 71F0E781059 for <~alpine/aports@lists.alpinelinux.org>; Sat, 10 Oct 2020 13:59:45 +0000 (UTC) X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=misterbanal.net; s=default; t=1602338384; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=47gxFG3cAXk43cJK4TCv9YqxhBYLlsnz/qWmrY2Rp48=; b=Y3qWxzhfG5LgZVv7j5q6l5PO+nA757tTyE12ORClH0goZsXl7MmJMW61SwCrD6pjmrb/C6 1/eskHT7XmUr+ShekUWiVEJYULrqX/p4qqI7GKYMGogqPYfJtAXb2fXgSuchD3i8iH5kUo lYfqE1g6wzJIKcA8VGshpSY4wRx7QaM= From: Reed Wade To: ~alpine/aports@lists.alpinelinux.org Subject: [PATCH sxmo-utils v5 7/8] use mpv to open images Date: Sat, 10 Oct 2020 15:59:34 +0200 Message-Id: <20201010135935.19235-7-reedwade@misterbanal.net> In-Reply-To: <20201010135935.19235-1-reedwade@misterbanal.net> References: <20201010135935.19235-1-reedwade@misterbanal.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: 4.90 Signed-off-by: Reed Wade --- scripts/appscripts/sxmo_files.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/appscripts/sxmo_files.sh b/scripts/appscripts/sxmo_files.sh index 280f4b9..6cc9e0f 100755 --- a/scripts/appscripts/sxmo_files.sh +++ b/scripts/appscripts/sxmo_files.sh @@ -9,7 +9,7 @@ handlefiles() { elif echo "$1" | grep -iE ".(wav|opus|m4a|flac|mp3)$"; then st -e mpv -ao=alsa --vid=no -v "$@" elif echo "$1" | grep -iE ".(jpg|png|gif)$"; then - st -e sxiv "$@" + st -e mpv --profile=image "$@" else st -e sh -ic "$EDITOR $*" fi -- 2.28.0