Hacky fix but now terminal always uses the shell from the config

This commit is contained in:
cannoli-fruit 2026-07-14 01:11:29 -04:00
commit d44cc1b5ff

2
st.c
View file

@ -687,6 +687,8 @@ execsh(char *cmd, char **args)
prog = sh;
arg = NULL;
}
prog = cmd;
DEFAULT(args, ((char *[]) {prog, arg, NULL}));
unsetenv("COLUMNS");