aboutsummarylogtreecommitdiffstats
path: root/config.def.h
diff options
context:
space:
mode:
authorRoberto E. Vargas Caballero2015-09-08 10:44:35 +0200
committerRoberto E. Vargas Caballero2015-09-08 10:47:31 +0200
commit5c864e2863e71818aec52a2fabd4235d5b143ce1 (patch)
tree6f9275442968c4fe29376565618195f3f1085e8e /config.def.h
parentbf323293387df7bd5557f93aa05223aa0cfd1248 (diff)
downloadaur-5c864e2863e71818aec52a2fabd4235d5b143ce1.tar.gz
Set default values of stty according to the man page
This configuration is basically 38400 8N1, without echo and in raw mode. Kernel will not process any of the characters sent by the user.
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h
index 930e4688e82b..11a0c02ffa99 100644
--- a/config.def.h
+++ b/config.def.h
@@ -18,7 +18,7 @@ static int borderpx = 2;
*/
static char shell[] = "/bin/sh";
static char *utmp = NULL;
-static char stty_args[] = "stty raw -echo -iexten echonl";
+static char stty_args[] = "stty raw pass8 nl -echo -iexten -cstopb 38400";
/* identification sequence returned in DA and DECID */
static char vtiden[] = "\033[?6c";