aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMitchell Riedstra <mitch@riedstra.dev>2021-10-20 20:45:53 -0400
committerMitchell Riedstra <mitch@riedstra.dev>2021-10-20 21:34:43 -0400
commit34ffa30edc8ae60e83c538c5d8809d1981e5a9e5 (patch)
tree44a28d419989b405a9eee0cf77b580308ce84b2f /Makefile
parentd78ff08d99780a73447d5a95bf1e358e8c23aa3c (diff)
downloaddmenu_askpass.tar.gz
dmenu_askpass.tar.xz
SSH askpass suppportdmenu_askpass
dmenu_askpass has been added and can be used to read in SSH key passwords, useful for if your agent is forwarded. Full support for prompting from security keys, often requiring you to tap the authenticator. This unlike some other askpass variants does not stick around after you tap the button.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a03a95c..2a4cd96 100644
--- a/Makefile
+++ b/Makefile
@@ -42,10 +42,11 @@ dist: clean
install: all
mkdir -p $(DESTDIR)$(PREFIX)/bin
- cp -f dmenu dmenu_path dmenu_run stest $(DESTDIR)$(PREFIX)/bin
+ cp -f dmenu dmenu_path dmenu_run dmenu_askpass stest $(DESTDIR)$(PREFIX)/bin
chmod 755 $(DESTDIR)$(PREFIX)/bin/dmenu
chmod 755 $(DESTDIR)$(PREFIX)/bin/dmenu_path
chmod 755 $(DESTDIR)$(PREFIX)/bin/dmenu_run
+ chmod 755 $(DESTDIR)$(PREFIX)/bin/dmenu_askpass
chmod 755 $(DESTDIR)$(PREFIX)/bin/stest
mkdir -p $(DESTDIR)$(MANPREFIX)/man1
sed "s/VERSION/$(VERSION)/g" < dmenu.1 > $(DESTDIR)$(MANPREFIX)/man1/dmenu.1