diff options
author | Rasmus Steinke <rasi@xssn.at> | 2017-09-20 18:02:38 +0200 |
---|---|---|
committer | Rasmus Steinke <rasi@xssn.at> | 2017-09-20 18:02:38 +0200 |
commit | ba4039f3bfac6d9bb96ed7a018dbdec2a133623c (patch) | |
tree | 92ddb65bbfe901247540fd856933af841175f229 | |
parent | 035c8cf4505a1ec9cf56c16b4311fee36b97acf6 (diff) | |
download | rofi-pass-ba4039f3bfac6d9bb96ed7a018dbdec2a133623c.tar.gz |
use spaces instead of tabs
-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 |