diff options
author | Ayush Agarwal <ayush@fastmail.in> | 2022-02-18 22:07:50 +0530 |
---|---|---|
committer | Ayush Agarwal <ayush@fastmail.in> | 2022-02-18 22:07:50 +0530 |
commit | 7726e35e8f2d7f8559ed13124b5aa54144389e83 (patch) | |
tree | b564ebae0c0ea3ddccbc0878e6641ada47890f42 | |
parent | b4d33f25e5c7542a3a307f5f8d5e550e702d54fa (diff) |
fix: don't expand dmenu options as a single string
-rwxr-xr-x | tessen | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -125,7 +125,7 @@ get_gopass_files() { # the actual menu tsn_passfile="$(printf "%s\n" "${!tmp_gopass_files[@]}" \ - | "$dmenu_backend" "${dmenu_backend_opts[*]}")" + | "$dmenu_backend" "${dmenu_backend_opts[@]}")" if [[ -z $tsn_passfile ]]; then _die |