diff --git a/dot_config/private_qutebrowser/userscripts/executable_gopass-fill b/dot_config/private_qutebrowser/userscripts/executable_gopass-fill index 7e7409c..ad07fb1 100644 --- a/dot_config/private_qutebrowser/userscripts/executable_gopass-fill +++ b/dot_config/private_qutebrowser/userscripts/executable_gopass-fill @@ -4,7 +4,7 @@ set -x log() { # echo "$@" >&2 - notify-send -t 1000 "Gopass form filler" "$*" + notify-send "Gopass form filler" "$*" } qute-command() { @@ -30,7 +30,7 @@ then secret="$(printf "%s\n" "${secrets[@]}" | rofi -dmenu)" elif (( ${#secrets[@]} < 1 )) then - log "No secret found!" + log "No secret found for domain $domain !" exit 0 else secret="${secrets[0]}"