diff options
author | Amin Bandali <amin@aminb.org> | 2018-05-13 11:38:20 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-13 11:38:20 -0400 |
commit | d9edef4fee53dd38c51b76f9d3f288ac89d83c8b (patch) | |
tree | 53096421165fd885b9a37757e8ad32dc11fbd7a8 | |
parent | 5315ee32a438b392c67ec984809884ca49066043 (diff) | |
download | rofi-pass-d9edef4fee53dd38c51b76f9d3f288ac89d83c8b.tar.gz |
get rid of the empty line after autotype
-rwxr-xr-x | rofi-pass | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -490,7 +490,7 @@ typeMenu () { checkIfPass local -a keys=("${!stuff[@]}") keys=("${keys[@]/$AUTOTYPE_field}") - typefield=$({ echo ${AUTOTYPE_field} ; printf '%s\n' "${keys[@]}" | sort; } | _rofi -dmenu -p "Choose Field to type > ") + typefield=$({ echo -n ${AUTOTYPE_field} ; printf '%s\n' "${keys[@]}" | sort; } | _rofi -dmenu -p "Choose Field to type > ") typefield_exit=$? if [[ $typefield_exit -eq 1 ]]; then exit |