summaryrefslogtreecommitdiff
path: root/scan
diff options
context:
space:
mode:
Diffstat (limited to 'scan')
-rwxr-xr-xscan2
1 files changed, 1 insertions, 1 deletions
diff --git a/scan b/scan
index f06d5a4..c152090 100755
--- a/scan
+++ b/scan
@@ -1,7 +1,7 @@
#!/bin/sh
# Find all files in subdirectories (excluding top-level files)
-file=$(find . -mindepth 2 -type f 2>/dev/null | sed 's|^\./||' | sort | dmenu -i -p "Select a file:")
+file=$(find . -mindepth 2 -type f 2>/dev/null | sed 's|^\./||' | sort | dmenu -l 15 -p "Select a file:")
# If a file was selected
if [ -n "$file" ]; then