summaryrefslogtreecommitdiff
path: root/dmenu
diff options
context:
space:
mode:
authorzachir <zachir@librem.one>2025-07-30 07:03:12 -0500
committerzachir <zachir@librem.one>2025-07-30 07:03:12 -0500
commita8cfb7a88d39aaeb061f217983c18451b0ca9b58 (patch)
tree756a34d538e03c707fdcb7033a2c10703c8ed0dc /dmenu
parentec2190e9ae549fc3f8a09a80bd686cc59a068e31 (diff)
Remove unnecessary if statement
Diffstat (limited to 'dmenu')
-rwxr-xr-xdmenu6
1 files changed, 1 insertions, 5 deletions
diff --git a/dmenu b/dmenu
index 1a54458..1361a33 100755
--- a/dmenu
+++ b/dmenu
@@ -13,11 +13,7 @@ if [ -n "$WAYLAND_DISPLAY" ]; then
SKIP="$((SKIP - 1))"
continue
fi
- if echo "$arg" | grep -qE '.* .*'; then
- ARGS+=("$arg")
- else
- ARGS+=("$arg")
- fi
+ ARGS+=("$arg")
done
fi
fi