diff options
author | chrysn <chrysn@fsfe.org> | 2013-10-26 00:50:36 +0200 |
---|---|---|
committer | chrysn <chrysn@fsfe.org> | 2013-10-26 00:50:36 +0200 |
commit | 5d55704009d1052db6f4039544aedb17ca8f541b (patch) | |
tree | 124bd4740a7ad7bcecd98c492cff6678682597a3 /ssh-askpass-noinput | |
parent | d8b50eb96e4e4f971803fcf2ba30312b2dac9d08 (diff) | |
download | ssh-agent-filter-5d55704009d1052db6f4039544aedb17ca8f541b.tar.gz |
ssh-askpass-noinput: a simpler confirmation dialog
this adds an ssh-askpass imlementation that will only show allow/deny
buttons and is based on zenity.
Diffstat (limited to 'ssh-askpass-noinput')
-rwxr-xr-x | ssh-askpass-noinput | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ssh-askpass-noinput b/ssh-askpass-noinput new file mode 100755 index 0000000..2954b88 --- /dev/null +++ b/ssh-askpass-noinput @@ -0,0 +1,3 @@ +#!/bin/sh + +exec zenity --question --title "SSH Request" --no-markup --text "$1" --ok-label Allow --cancel-label Deny |