Launch scroll program with the default shell
This commit is contained in:
parent
0b73612c0d
commit
c1145268f6
1 changed files with 6 additions and 3 deletions
9
st.c
9
st.c
|
@ -682,9 +682,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;
|
||||
|
|
Loading…
Reference in a new issue