all repos — st @ 476f93794acc36ea69dfd33551e311863c8afc9a

st (suckless terminal) config

little clean up.
Aurélien Aptel aurelien.aptel@gmail.com
commit

476f93794acc36ea69dfd33551e311863c8afc9a

parent

d01c55c9ab58588d98239c515aa8db6443ae75ca

1 files changed, 3 insertions(+), 5 deletions(-)

jump to
M st.cst.c

@@ -208,12 +208,10 @@ }

void execsh(void) { - char *shell = getenv("SHELL"); - if(!shell) - shell = "/bin/sh"; - char *args[3] = {shell, "-i", NULL}; + char *args[3] = {getenv("SHELL"), "-i", NULL}; + DEFAULT(args[0], "/bin/sh"); /* default shell if getenv() failed */ putenv("TERM=" TNAME); - execvp(shell, args); + execvp(args[0], args); } void