From dbab5bf249b5fd6abe2de630a6adb1fc58b8934e Mon Sep 17 00:00:00 2001 From: Jeremy Dormitzer Date: Tue, 7 Jul 2020 11:38:38 -0400 Subject: [PATCH] Set up StumpWM pinentry module --- gnupg/.gnupg/gpg-agent.conf | 3 ++- stumpwm/.stumpwm.d/init.lisp | 6 ++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/gnupg/.gnupg/gpg-agent.conf b/gnupg/.gnupg/gpg-agent.conf index 8f27715..3937d52 100644 --- a/gnupg/.gnupg/gpg-agent.conf +++ b/gnupg/.gnupg/gpg-agent.conf @@ -1,2 +1,3 @@ grab -default-cache-ttl 1800 \ No newline at end of file +default-cache-ttl 1800 +pinentry-program /home/jdormit/.stumpwm.d/contrib/util/pinentry/stumpwm-pinentry \ No newline at end of file diff --git a/stumpwm/.stumpwm.d/init.lisp b/stumpwm/.stumpwm.d/init.lisp index ca716de..7aacb7c 100644 --- a/stumpwm/.stumpwm.d/init.lisp +++ b/stumpwm/.stumpwm.d/init.lisp @@ -209,6 +209,12 @@ (run-shell-command "xsetroot -cursor_name left_ptr") (run-shell-command "setxkbmap -option caps:escape") +;; GPG +(ql:quickload "cffi") +(ql:quickload "usocket") +(ql:quickload "percent-encoding") +(load-module "pinentry") + ;; UI (ql:quickload "clx-truetype") (load-module "ttf-fonts")