st
simple terminal
git clone https://9o.is/git/st.git
commit 509a10ea4ee7cd8608521b7fc45de787ff0756e9 parent e9c94bb1dea2ca143d4cb723fbbadb5bcfa19deb Author: Christoph Lohmann <20h@r-36.net> Date: Sun, 9 Jun 2013 15:52:35 +0200 Fixing title setting with the title argument. Diffstat:
| M | st.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/st.c b/st.c @@ -3639,7 +3639,7 @@ main(int argc, char *argv[]) { /* eat all remaining arguments */ if(argc > 1) { opt_cmd = &argv[1]; - if(argv[1] != NULL) { + if(argv[1] != NULL && opt_title == NULL) { titles = strdup(argv[1]); opt_title = basename(titles); }