aboutsummarylogtreecommitdiffstats
path: root/config.def.h
diff options
context:
space:
mode:
authorRoberto E. Vargas Caballero2015-04-13 19:03:53 +0200
committerRoberto E. Vargas Caballero2015-04-15 10:52:44 +0200
commit826e3a53bb4e7eb6eb7d77ecfa121e74bc0252c2 (patch)
tree00ecc0881118d6bbdba1c03b31c4439fbc7ef56f /config.def.h
parent6fea53a1bf89e1868268a7c7333d5f57e0f5843b (diff)
downloadaur-826e3a53bb4e7eb6eb7d77ecfa121e74bc0252c2.tar.gz
Add tty line support
Not always is desirable to create a pseudo terminal, and some times we want to open a terminal emulator over a tty line. With this new patch is possible to do someting like: $ st -l /dev/ttyS0 115200 Without this option was needed to launch another terminal emulator over st (for example minicom, picocom, cu, ...).
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h
index 5e7caaf37679..bb5596e39f48 100644
--- a/config.def.h
+++ b/config.def.h
@@ -9,6 +9,7 @@ static char font[] = "Liberation Mono:pixelsize=12:antialias=false:autohint=fals
static int borderpx = 2;
static char shell[] = "/bin/sh";
static char *utmp = NULL;
+static char stty_args[] = "stty raw -echo -iexten echonl";
/* identification sequence returned in DA and DECID */
static char vtiden[] = "\033[?6c";