diff --git a/scripts/.local/bin/pinentry-fuzzel b/scripts/.local/bin/pinentry-fuzzel deleted file mode 100755 index 4585c40..0000000 --- a/scripts/.local/bin/pinentry-fuzzel +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/sh - -echo "OK Please go ahead" -while read stdin; do - case $stdin in - GETPIN | getpin) - echo "D $(fuzzel --prompt-only "Passphrase: " --cache /dev/null --password --dmenu)" - echo "OK" - ;; - BYE | bye) - echo "OK closing connection" - exit 0 - ;; - *) - echo "OK" - ;; - esac -done