From c820223d0c525dd009a51314785ab1fa3b2bd3ac Mon Sep 17 00:00:00 2001 From: Tobi-wan Kenobi Date: Sat, 10 Dec 2016 10:47:23 +0100 Subject: [PATCH] [core/input] Execute commands in background When spawning a command from an input interaction, do it in the background, so as to not block further interactions. see #23 --- bumblebee/input.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bumblebee/input.py b/bumblebee/input.py index e92da99..75eaec6 100644 --- a/bumblebee/input.py +++ b/bumblebee/input.py @@ -98,6 +98,6 @@ class I3BarInput(object): if callable(cmd): cmd(event) else: - bumblebee.util.execute(cmd) + bumblebee.util.execute(cmd, False) # vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4