]> git.sur5r.net Git - i3/i3/commitdiff
when using i3 -C, don’t send remaining arguments via IPC (Thanks Somelauw)
authorMichael Stapelberg <michael@stapelberg.de>
Mon, 25 Jun 2012 19:43:41 +0000 (21:43 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Mon, 25 Jun 2012 19:43:41 +0000 (21:43 +0200)
src/main.c

index 39288295577b773b1d3040ed06336e77a2d3e688..e332f5b45d46e070d7f677dcd773413098b0046e 100644 (file)
@@ -405,7 +405,7 @@ int main(int argc, char *argv[]) {
     /* If the user passes more arguments, we act like i3-msg would: Just send
      * the arguments as an IPC message to i3. This allows for nice semantic
      * commands such as 'i3 border none'. */
-    if (optind < argc) {
+    if (!only_check_config && optind < argc) {
         /* We enable verbose mode so that the user knows what’s going on.
          * This should make it easier to find mistakes when the user passes
          * arguments by mistake. */