diff options
| author | Sebastiano Tronto <sebastiano.tronto@gmail.com> | 2021-11-21 16:31:12 +0100 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano.tronto@gmail.com> | 2021-11-21 16:31:12 +0100 |
| commit | 80a952882678373d20cd71e2e4974ac2604b83c1 (patch) | |
| tree | e990ba31894411fbfaca426ff26f7188e344d52d /dmenu-bookmarks | |
| parent | 302ac9f5271796d203772b7ff6b9a737c8e6da73 (diff) | |
| download | scripts-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 'dmenu-bookmarks')
| -rwxr-xr-x | dmenu-bookmarks | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/dmenu-bookmarks b/dmenu-bookmarks index 7de7040..f21849b 100755 --- a/dmenu-bookmarks +++ b/dmenu-bookmarks | |||
| @@ -7,4 +7,6 @@ | |||
| 7 | #dir=$XDG_DATA_HOME/bookmarks | 7 | #dir=$XDG_DATA_HOME/bookmarks |
| 8 | dir=$HOME/Dropbox/bookmarks # TODO: change it when I have a better sync system | 8 | dir=$HOME/Dropbox/bookmarks # TODO: change it when I have a better sync system |
| 9 | 9 | ||
| 10 | cat "$(dmenu-filepicker $dir)" | xargs open-url | 10 | echo "$(dmenu-filepicker $dir)" | while read line; do |
| 11 | cat "$line" | ||
| 12 | done | xargs open-url | ||
