diff options
-rwxr-xr-x | rofi-pass | 24 |
1 files changed, 12 insertions, 12 deletions
@@ -269,9 +269,9 @@ mainMenu () { HELP="Welcome to rofi-pass. Use <span color='$help_color'>${insert_pass}</span> to create a new pass entry. Run ${default_do} with <span color='$help_color'>Enter</span>. For more help hit <span color='$help_color'>${help}</span>." - args=( -dmenu - -kb-custom-1 "${autotype}" - -kb-custom-2 "${type_user}" + args=( -dmenu + -kb-custom-1 "${autotype}" + -kb-custom-2 "${type_user}" -kb-custom-3 "${type_pass}" -kb-custom-4 "${open_url}" -kb-custom-5 "${copy_name}" @@ -283,15 +283,15 @@ Run ${default_do} with <span color='$help_color'>Enter</span>. For more help hit -kb-custom-15 "${copy_menu}" -kb-custom-16 "${help}" -kb-custom-17 "${switch}" - -kb-custom-18 "${insert_pass}" - -select $entry - -p "rofi-pass > ") - - if [[ $help_header == "true" ]] - then - args+=( -mesg "${HELP}" ) - fi - selected_password="$(list_passwords 2>/dev/null | rofi "${args[@]}")" + -kb-custom-18 "${insert_pass}" + -select $entry + -p "rofi-pass > ") + + if [[ $help_header == "true" ]] + then + args+=( -mesg "${HELP}" ) + fi + selected_password="$(list_passwords 2>/dev/null | rofi "${args[@]}")" rofi_exit=$? if [[ $rofi_exit -eq 1 ]]; then |