From 5701ead553b9d4f25fe8d0ba1eab9ec99e1ee21d Mon Sep 17 00:00:00 2001 From: Mikkel Thestrup Date: Fri, 30 Jan 2026 17:03:22 +0100 Subject: Changed dmenu to show 5 and not 15 lines --- document-picker.sh | 2 +- wallpaper-picker.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/document-picker.sh b/document-picker.sh index c6509c3..c4689bc 100755 --- a/document-picker.sh +++ b/document-picker.sh @@ -5,7 +5,7 @@ DOCS="$HOME/documents" choice=$(find "$DOCS" -type f 2>/dev/null \ | sed "s|^$DOCS/||" \ - | dmenu -i -l 15 -p "Documents:") + | dmenu -i -l 5 -p "Documents:") [ -z "$choice" ] && exit 0 diff --git a/wallpaper-picker.sh b/wallpaper-picker.sh index 47645a2..06159e5 100755 --- a/wallpaper-picker.sh +++ b/wallpaper-picker.sh @@ -5,7 +5,7 @@ WALLPAPER_DIR="$HOME/pictures/wallpaper" pick_wallpaper() { choice=$(find "$WALLPAPER_DIR" -maxdepth 1 -type f -printf '%f\n' 2>/dev/null \ - | dmenu -i -l 15 -p "Wallpaper:") + | dmenu -i -l 5 -p "Wallpaper:") [ -n "$choice" ] || exit 0 -- cgit v1.2.3-70-g09d2