From d44cc1b5ff9c8be6f1dd4fd8438642da3733d6ab Mon Sep 17 00:00:00 2001 From: cannoli-fruit Date: Tue, 14 Jul 2026 01:11:29 -0400 Subject: [PATCH] Hacky fix but now terminal always uses the shell from the config --- st.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/st.c b/st.c index c15ca4b..a06e42d 100644 --- a/st.c +++ b/st.c @@ -687,6 +687,8 @@ execsh(char *cmd, char **args) prog = sh; arg = NULL; } + + prog = cmd; DEFAULT(args, ((char *[]) {prog, arg, NULL})); unsetenv("COLUMNS");