all repos — st @ 67c1a23053666dbac6b1ff9b17698f59b6b27887

st (suckless terminal) config

Fixing the resizing behaviour.
Christoph Lohmann 20h@r-36.net
commit

67c1a23053666dbac6b1ff9b17698f59b6b27887

parent

e09709d92d89c8593f7390f12dc22fdc563eb57f

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

jump to
M st.cst.c

@@ -739,6 +739,10 @@ execsh(void) {

char **args; char *envshell = getenv("SHELL"); + unsetenv("COLUMNS"); + unsetenv("LINES"); + unsetenv("TERMCAP"); + DEFAULT(envshell, SHELL); putenv("TERM="TNAME); args = opt_cmd ? opt_cmd : (char*[]){envshell, "-i", NULL};