summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSuleyman Farajli <suleyman@farajli.net>2025-11-04 09:54:42 +0400
committerSuleyman Farajli <suleyman@farajli.net>2025-11-04 09:54:42 +0400
commit3e4416c128e720f6ed221cb2ca847b4746d2c789 (patch)
treee9778b356d210e46923d34fccdf27d98425412ff
parentf94fab5acd79831e3a2672fa262f6477fbdd71d5 (diff)
fix(swall): do not look for gif files
-rwxr-xr-xscripts/gui/swall2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/gui/swall b/scripts/gui/swall
index 9cb9e39..09c8e83 100755
--- a/scripts/gui/swall
+++ b/scripts/gui/swall
@@ -59,7 +59,7 @@ if [ -n "${input}" ]; then
fi
if [ -n "${waldir}" ]; then
- image=$(find "${waldir}" -iregex '.*.\(jpg\|jpeg\|png\|gif\)' 2>/dev/null \
+ image=$(find "${waldir}" -iregex '.*.\(jpg\|jpeg\|png\)' 2>/dev/null \
| shuf -n 1 )
fi