]> git.sev.monster Git - dotfiles.git/blame - bin/pinentry
zshrc: add typo aliases for `cd ..' and `ga .'
[dotfiles.git] / bin / pinentry
CommitLineData
03b903de 1#!/bin/sh
2# https://kevinlocke.name/bits/2019/07/31/prefer-terminal-for-gpg-pinentry
3
6d54344e 4set -C
5gfx="gnome qt gtk-4 gtk-3 gtk-2 gtk bemenu dmenu x11"
6tty="curses-ss curses tty"
03b903de 7case "${PINENTRY_USER_DATA-}" in
8650c486 8 # prefer tty unless USE_TTY is 0
9 *USE_TTY=0*) list="$gfx $tty";;
10 *) list="$tty $gfx";;
03b903de 11esac
12
13for x in $list; do
a2a81fa8 14 p=$(command -v "pinentry-$x")
03b903de 15 if [ $? = 0 ]; then
16 exec "$p" "$@"
17 fi
18done
19
20echo "No pinentry program found" >&2
This page took 0.029812 seconds and 4 git commands to generate.