commit f5a8e1fe10b748cebd27dbf2b66d964107640a20
parent 030cc2f7ef013daffd425fdc03703fec476d00ed
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date: Tue, 3 Mar 2020 13:24:53 +0100
Do not show bookmarks with several lines in dmenu
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.local/bin/search b/.local/bin/search
@@ -10,7 +10,7 @@ if [ $# -lt 1 ]; then
lines=10
prompt="search: "
if [ -z "$TERM" ]; then
- c=$(printf '%s' "$uris" | dmenu -i -l "$lines" -p "$prompt") || exit 1
+ c=$(printf '%s' "$uris" | dmenu -i -p "$prompt") || exit 1
else
c=$(printf '%s' "$uris" | fzy -l "$lines" -p "$prompt") || exit 1
fi