summary refs log tree commit diff stats
path: root/bin
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-03-25 19:59:35 +0100
committerChristian Krinitsin <mail@krinitsin.com>2025-03-25 19:59:35 +0100
commit91e2acd4748c9266a89452e825ca5d273ae3b3ed (patch)
tree370a208e3e6ce8df7758ce59ed0dc3b5cea9b0d4 /bin
parent0d66d1fe8fce80fd7fdf246e2543b7ea6d990272 (diff)
downloaddotfiles-91e2acd4748c9266a89452e825ca5d273ae3b3ed.tar.gz
dotfiles-91e2acd4748c9266a89452e825ca5d273ae3b3ed.zip
change pinentry
Diffstat (limited to 'bin')
-rwxr-xr-xbin/prepinentry10
1 files changed, 0 insertions, 10 deletions
diff --git a/bin/prepinentry b/bin/prepinentry
deleted file mode 100755
index bec7c46..0000000
--- a/bin/prepinentry
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/bash
-
-TARGET_PROGRAM="/home/chris/.gnupg/pinentry-dmenu"
-
-inotifywait -m -e access "$TARGET_PROGRAM" | while read; do
-    if [ -f "/home/chris/.gnupg/current_monitor" ]; then
-        rm /home/chris/.gnupg/current_monitor
-    fi
-    swaymsg -t get_outputs | jq -r '.[] | select(.focused==true).name' >> /home/chris/.gnupg/current_monitor
-done