add urxvt to exec-failed message
This commit is contained in:
parent
7eb4a2c770
commit
d3eba6a99b
2 changed files with 2 additions and 2 deletions
2
key.c
2
key.c
|
@ -168,7 +168,7 @@ keypress(XKeyEvent *e)
|
||||||
execlp("urxvt", "urxvt", (char*)0);
|
execlp("urxvt", "urxvt", (char*)0);
|
||||||
execlp("9term", "9term", scrolling ? "-ws" : "-w", (char*)0);
|
execlp("9term", "9term", scrolling ? "-ws" : "-w", (char*)0);
|
||||||
execlp("xterm", "xterm", "-ut", (char*)0);
|
execlp("xterm", "xterm", "-ut", (char*)0);
|
||||||
perror("ryudo: exec 9term/xterm failed");
|
perror("ryudo: exec urxvt/9term/xterm failed");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
menu.c
2
menu.c
|
@ -213,7 +213,7 @@ spawn(ScreenInfo *s)
|
||||||
execlp("urxvt", "urxvt", (char*)0);
|
execlp("urxvt", "urxvt", (char*)0);
|
||||||
execlp("9term", "9term", scrolling ? "-ws" : "-w", (char*)0);
|
execlp("9term", "9term", scrolling ? "-ws" : "-w", (char*)0);
|
||||||
execlp("xterm", "xterm", "-ut", (char*)0);
|
execlp("xterm", "xterm", "-ut", (char*)0);
|
||||||
perror("ryudo: exec 9term/xterm failed");
|
perror("ryudo: exec urxvt/9term/xterm failed");
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
exit(0);
|
exit(0);
|
||||||
|
|
Loading…
Reference in a new issue