diff options
author | Fredrik Salomonsson <plattfot@gmail.com> | 2020-05-03 12:01:37 -0700 |
---|---|---|
committer | Fredrik Salomonsson <plattfot@gmail.com> | 2020-05-03 12:01:37 -0700 |
commit | fe61e8e9bf0cb95171fee2fc0382dacb11fb5b58 (patch) | |
tree | 4c9e81b5a518f705106a21ca96c9f9f0b53ce57b | |
parent | 17449928ccf2909808480c85573446dd27b39912 (diff) | |
download | pinentry-rofi-fe61e8e9bf0cb95171fee2fc0382dacb11fb5b58.tar.gz |
Using ">:" for the prompt of confirm popup (#4)
Instead of `pinentry-prompt` as that is only set when it ask for the
pin.
-rwxr-xr-x | pinentry-rofi.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pinentry-rofi.scm b/pinentry-rofi.scm index 00702da..81aea7a 100755 --- a/pinentry-rofi.scm +++ b/pinentry-rofi.scm @@ -226,7 +226,7 @@ touch-file=/run/user/1000/gnupg/S.gpg-agent" "|" ,(format #f "env DISPLAY=~a" (pinentry-display pinentry)) "rofi -dmenu -disable-history -only-match -l 2 -i" - ,(format #f "-p ~s" (pinentry-prompt pinentry)) + ,(format #f "-p '>'") ,(format #f "-mesg ~s" (if (pinentry-error pinentry) (format #f "~a\n~a" (pinentry-error pinentry) |