summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOrestis Floros <orestisflo@gmail.com>2020-01-17 22:00:23 +0100
committerOrestis Floros <orestisflo@gmail.com>2020-01-18 11:09:14 +0100
commitf76b11327fe866649226a4704b1c513addffa15b (patch)
tree4f15d107a35d4eba22e3e502ffa46010063e3957
parent110bdcbee5a393323a83106fa486db116b0001f1 (diff)
downloadi3-f76b11327fe866649226a4704b1c513addffa15b.tar.gz
i3-f76b11327fe866649226a4704b1c513addffa15b.zip
Do not error on exec not matching a container
See #3903, #3905
-rw-r--r--src/commands.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands.c b/src/commands.c
index 6f12025c..6a6ea5a3 100644
--- a/src/commands.c
+++ b/src/commands.c
@@ -1226,7 +1226,7 @@ void cmd_exec(I3_CMD, const char *nosn, const char *command) {
start_application(command, no_startup_id);
}
- ysuccess(count > 0);
+ ysuccess(true);
}
#define CMD_FOCUS_WARN_CHILDREN \