all repos — st @ 776a022e39a3c8f7c81b35d6b4307ffaa0ae3df8

st (suckless terminal) config

Importing the patch of Roberto Vargas to inherit signal handlers.
Christoph Lohmann 20h@r-36.net
commit

776a022e39a3c8f7c81b35d6b4307ffaa0ae3df8

parent

fe2ba95b3d81127b98a5dc6fa0341a90beabd1a0

1 files changed, 7 insertions(+), 0 deletions(-)

jump to
M st.cst.c

@@ -774,6 +774,13 @@ unsetenv("COLUMNS");

unsetenv("LINES"); unsetenv("TERMCAP"); + signal(SIGCHLD, SIG_DFL); + signal(SIGHUP, SIG_DFL); + signal(SIGINT, SIG_DFL); + signal(SIGQUIT, SIG_DFL); + signal(SIGTERM, SIG_DFL); + signal(SIGALRM, SIG_DFL); + DEFAULT(envshell, SHELL); putenv("TERM="TNAME); args = opt_cmd ? opt_cmd : (char*[]){envshell, "-i", NULL};