From 1912cee95787d56d620c6fd3ebf1fe3c9c530c36 Mon Sep 17 00:00:00 2001 From: Toni Jarjour <39845673+tonijarjour@users.noreply.github.com> Date: Mon, 14 Sep 2020 13:01:32 -0400 Subject: [PATCH] make sxiv automatically play animations (#731) --- plugins/imgview | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/imgview b/plugins/imgview index afc0d0fe..a5fafbf5 100755 --- a/plugins/imgview +++ b/plugins/imgview @@ -55,7 +55,7 @@ elif which sxiv >/dev/null 2>&1; then if [ -f "$1" ]; then view_dir sxiv "$1" >/dev/null 2>&1 & elif [ -d "$1" ] || [ -h "$1" ]; then - sxiv -qt "$1" >/dev/null 2>&1 & + sxiv -aqt "$1" >/dev/null 2>&1 & fi elif which viu >/dev/null 2>&1; then viu -n "$1" | less -R