diff options
-rw-r--r-- | config.example | 1 | ||||
-rwxr-xr-x | rofi-pass | 6 |
2 files changed, 6 insertions, 1 deletions
diff --git a/config.example b/config.example index 31a6c1d..80a067a 100644 --- a/config.example +++ b/config.example @@ -57,3 +57,4 @@ action_menu="Alt+a" type_menu="Alt+t" help="Alt+h" switch="Alt+x" +insert_pass="Alt+n" @@ -187,6 +187,7 @@ ${line3}</span>" -kb-custom-15 "${copy_menu}" \ -kb-custom-16 "${help}" \ -kb-custom-17 "${switch}" \ + -kb-custom-18 "${insert_pass}" \ -dmenu \ -select "$entry" \ -p "rofi-pass > ")" @@ -224,6 +225,7 @@ ${line3}</span>" elif [[ "${rofi_exit}" -eq 25 ]]; then unset selected_password; helpMenu; elif [[ "${rofi_exit}" -eq 24 ]]; then copyMenu; elif [[ "${rofi_exit}" -eq 26 ]]; then $(${basecommand} --bmarks); + elif [[ "${rofi_exit}" -eq 27 ]]; then insertPass; fi password='' selected_password='' @@ -248,8 +250,10 @@ ${copy_menu}: Copy Custom Field --- ${action_menu}: Edit, Move, Delete, Re-generate Submenu ${show}: Show Password File +${insert_pass}: Insert new Pass Entry ${switch}: Switch Pass/Bookmark Mode" | _rofi -dmenu -p "Help > ") -if [[ $help == "" ]]; then exit; +help_val=$? +if [[ $help_val -eq 1 ]]; then exit; else unset helptext; mainMenu; fi } |