Check if /tmp/$USER-rofi-pass/last_used exists
This commit is contained in:
parent
75cf715158
commit
c8e49102b2
13
rofi-pass
13
rofi-pass
@ -513,7 +513,7 @@ if [[ -z ${count} ]]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# check if alternative root directory was given on commandline
|
# check if alternative root directory was given on commandline
|
||||||
if [[ $1 == "--last-used" || $1 == "--show-last" ]]; then
|
if [[ -r "/tmp/$USER-rofi-pass/last_used" ]] && [[ $1 == "--last-used" || $1 == "--show-last" ]]; then
|
||||||
export root=$(awk -F ': ' '{ print $1 }' /tmp/$USER-rofi-pass/last_used)
|
export root=$(awk -F ': ' '{ print $1 }' /tmp/$USER-rofi-pass/last_used)
|
||||||
elif [[ -n "$2" && "$1" == "--root" ]]; then
|
elif [[ -n "$2" && "$1" == "--root" ]]; then
|
||||||
export root="${2}"
|
export root="${2}"
|
||||||
@ -539,10 +539,17 @@ export PASSWORD_STORE_DIR="${root}"
|
|||||||
help_msg
|
help_msg
|
||||||
;;
|
;;
|
||||||
--last-used)
|
--last-used)
|
||||||
entry="$(awk -F ': ' '{ print $2 }' /tmp/$USER-rofi-pass/last_used)" mainMenu
|
if [[ -r "/tmp/$USER-rofi-pass/last_used" ]]; then
|
||||||
|
entry="$(awk -F ': ' '{ print $2 }' /tmp/$USER-rofi-pass/last_used)"
|
||||||
|
fi
|
||||||
|
mainMenu
|
||||||
;;
|
;;
|
||||||
--show-last)
|
--show-last)
|
||||||
selected_password="$(awk -F ': ' '{ print $2 }' /tmp/$USER-rofi-pass/last_used)" showEntry
|
if [[ -r "/tmp/$USER-rofi-pass/last_used" ]]; then
|
||||||
|
selected_password="$(awk -F ': ' '{ print $2 }' /tmp/$USER-rofi-pass/last_used)" showEntry
|
||||||
|
else
|
||||||
|
mainMenu
|
||||||
|
fi
|
||||||
;;
|
;;
|
||||||
--bmarks)
|
--bmarks)
|
||||||
mainMenu --bmarks;
|
mainMenu --bmarks;
|
||||||
|
Loading…
Reference in New Issue
Block a user