diff options
Diffstat (limited to '')
-rwxr-xr-x | scripts/.scripts/launch_rofi-pass.sh | 1 | ||||
-rwxr-xr-x | scripts/.scripts/my-pinentry | 16 |
2 files changed, 17 insertions, 0 deletions
diff --git a/scripts/.scripts/launch_rofi-pass.sh b/scripts/.scripts/launch_rofi-pass.sh new file mode 100755 index 0000000..87654ce --- /dev/null +++ b/scripts/.scripts/launch_rofi-pass.sh @@ -0,0 +1 @@ +PINENTRY_USER_DATA="gtk" exec rofi-pass diff --git a/scripts/.scripts/my-pinentry b/scripts/.scripts/my-pinentry new file mode 100755 index 0000000..b46687e --- /dev/null +++ b/scripts/.scripts/my-pinentry @@ -0,0 +1,16 @@ +#!/bin/bash +# choose pinentry depending on PINENTRY_USER_DATA +# requires pinentry-curses and pinentry-gtk2 +# this *only works* with gpg 2 +# see https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=802020 + +case $PINENTRY_USER_DATA in +gtk) + exec /usr/bin/pinentry-gtk-2 "$@" + ;; +none) + exit 1 # do not ask for passphrase + ;; +*) + exec /usr/bin/pinentry-curses "$@" +esac |