diff options
| author | Mitchell Riedstra <mitch@riedstra.dev> | 2021-10-20 20:45:53 -0400 |
|---|---|---|
| committer | Mitchell Riedstra <mitch@riedstra.dev> | 2021-10-20 21:34:43 -0400 |
| commit | 34ffa30edc8ae60e83c538c5d8809d1981e5a9e5 (patch) | |
| tree | 44a28d419989b405a9eee0cf77b580308ce84b2f /Makefile | |
| parent | d78ff08d99780a73447d5a95bf1e358e8c23aa3c (diff) | |
| download | dmenu-34ffa30edc8ae60e83c538c5d8809d1981e5a9e5.tar.gz dmenu-34ffa30edc8ae60e83c538c5d8809d1981e5a9e5.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-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 |
