--- st.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/st.c b/st.c index e51fe15..afe82eb 100644 --- a/st.c +++ b/st.c @@ -689,9 +689,12 @@ execsh(char *cmd, char **args) if (args) { prog = args[0]; arg = NULL; - } else if (scroll || utmp) { - prog = scroll ? scroll : utmp; - arg = scroll ? utmp : NULL; + } else if (scroll) { + prog = scroll; + arg = utmp ? utmp : sh; + } else if (utmp) { + prog = utmp; + arg = NULL; } else { prog = sh; arg = NULL; -- 2.26.0
- [dev] Patches for st Roberto E. Vargas Caballero
- Re: [dev][st] Several patches k0ga
- [dev] [PATCH] Launch scroll program w... Quentin Rameau
- [dev] [PATCH] Launch scroll program w... Quentin Rameau
- [dev] [PATCH 1/1] Launch scroll program w... Quentin Rameau
- [dev] [PATCH 0/1] Small fix for scroll in... Quentin Rameau