Fix title initialization
authorQuentin Rameau <quinq@fifth.space>
Fri, 16 Mar 2018 15:19:18 +0000 (16:19 +0100)
committerHiltjo Posthuma <hiltjo@codemadness.org>
Fri, 16 Mar 2018 15:44:30 +0000 (16:44 +0100)
x.c

diff --git a/x.c b/x.c
index 06e53d3..d0b26ac 100644 (file)
--- a/x.c
+++ b/x.c
@@ -1929,12 +1929,12 @@ main(int argc, char *argv[])
        } ARGEND;
 
 run:
-       if (argc > 0) {
-               /* eat all remaining arguments */
+       if (argc > 0) /* eat all remaining arguments */
                opt_cmd = argv;
-               if (!opt_title && !opt_line)
-                       opt_title = basename(xstrdup(argv[0]));
-       }
+
+       if (!opt_title)
+               opt_title = (opt_line || !opt_cmd) ? "st" : opt_cmd[0];
+
        setlocale(LC_CTYPE, "");
        XSetLocaleModifiers("");
        cols = MAX(cols, 1);