raster pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=18aab4be01628bea4795bb4ccdb9f4035da9673a
commit 18aab4be01628bea4795bb4ccdb9f4035da9673a Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com> Date: Tue Aug 16 16:01:57 2016 +0900 e askpass - also set SSH_ASKPASS like with sudo this means that is ssh runs with no tty/terminal available then it can ask for a password with the same gui as for sudo that e provides. --- src/bin/e_main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/e_main.c b/src/bin/e_main.c index 4c705fc..3c88736 100644 --- a/src/bin/e_main.c +++ b/src/bin/e_main.c @@ -327,6 +327,7 @@ main(int argc, char **argv) e_util_env_set("DESKTOP", "Enlightenment"); snprintf(buff, sizeof(buff), "%s/enlightenment_askpass", e_prefix_bin_get()); e_util_env_set("SUDO_ASKPASS", buff); + e_util_env_set("SSH_ASKPASS", buff); TS("Environment Variables Done"); /* KDE5 applications don't understand anything other then gnome or kde */ --