aboutsummaryrefslogtreecommitdiff
path: root/dmenu-filepicker
diff options
context:
space:
mode:
authorSebastiano Tronto <sebastiano.tronto@gmail.com>2021-11-21 16:31:12 +0100
committerSebastiano Tronto <sebastiano.tronto@gmail.com>2021-11-21 16:31:12 +0100
commit80a952882678373d20cd71e2e4974ac2604b83c1 (patch)
treee990ba31894411fbfaca426ff26f7188e344d52d /dmenu-filepicker
parent302ac9f5271796d203772b7ff6b9a737c8e6da73 (diff)
downloadscripts-80a952882678373d20cd71e2e4974ac2604b83c1.tar.gz
scripts-80a952882678373d20cd71e2e4974ac2604b83c1.zip
Fixed dmenu-filepicker when picking multiple files. Fixed opening multiple bookmarks at once in dmenu-bookmarks
Diffstat (limited to '')
-rwxr-xr-xdmenu-filepicker4
1 files changed, 3 insertions, 1 deletions
diff --git a/dmenu-filepicker b/dmenu-filepicker
index a14bd53..532fb82 100755
--- a/dmenu-filepicker
+++ b/dmenu-filepicker
@@ -21,7 +21,9 @@ while true; do
21 cd "$next" 21 cd "$next"
22 next=$(ls -a | $menu $menuopts) 22 next=$(ls -a | $menu $menuopts)
23 else 23 else
24 echo "$(pwd)/$next" 24 echo "$next" | while read line; do
25 echo "$(pwd)/$line"
26 done
25 break 27 break
26 fi 28 fi
27done 29done

Generated with cgit - Back to sebastiano.tronto.net