From 029071714d4d9f1bd1d298e45a4a09c5a9052baa Mon Sep 17 00:00:00 2001 From: Rasmus Steinke Date: Fri, 21 Aug 2015 17:44:53 +0200 Subject: update --help --- rofi-pass | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rofi-pass b/rofi-pass index 0678819..e3e61be 100755 --- a/rofi-pass +++ b/rofi-pass @@ -20,7 +20,7 @@ if [[ -z $BROWSER ]]; then fi # check if alternative root directory was given on commandline -if [[ $1 == "--last-used" ]]; then +if [[ $1 == "--last-used" || $1 == "--show-last" ]]; then root=$(awk -F ': ' '{ print $1 }' $HOME/.config/rofi-pass/last_used) elif [[ -n "$2" && "$1" == "--root" ]]; then root="${2}" @@ -338,6 +338,8 @@ help_msg () { echo "--insert insert new entry to password store" echo "--manage edit/move/delete entries" echo -e "--root set custom root directory" + echo "--last-used highlight last used item" + echo "--show-last show details of last used Entry" } ########################## -- cgit