diff options
author | zachir <zachir@librem.one> | 2025-07-30 07:03:12 -0500 |
---|---|---|
committer | zachir <zachir@librem.one> | 2025-07-30 07:03:12 -0500 |
commit | a8cfb7a88d39aaeb061f217983c18451b0ca9b58 (patch) | |
tree | 756a34d538e03c707fdcb7033a2c10703c8ed0dc | |
parent | ec2190e9ae549fc3f8a09a80bd686cc59a068e31 (diff) |
Remove unnecessary if statement
-rwxr-xr-x | dmenu | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -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 |