summaryrefslogtreecommitdiffstats
path: root/py3status
diff options
context:
space:
mode:
authorUltrabug <ultrabug@gentoo.org>2014-12-21 20:30:20 +0100
committerUltrabug <ultrabug@gentoo.org>2014-12-21 20:30:20 +0100
commita9d2fda795510708382b9b8be81527ec330456d0 (patch)
tree3f5fff5e12ce2ad69bc934709b0786890762a838 /py3status
parentd07f360da83260c811875a79ae5e5441612bee80 (diff)
make i3-nagbar messages non blocking to py3status
Diffstat (limited to 'py3status')
-rwxr-xr-xpy3status/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/py3status/__init__.py b/py3status/__init__.py
index 49bd97e..83fa31a 100755
--- a/py3status/__init__.py
+++ b/py3status/__init__.py
@@ -1041,7 +1041,7 @@ class Py3statusWrapper():
try:
log_level = LOG_ERR if level == 'error' else LOG_WARNING
syslog(log_level, msg)
- call(
+ Popen(
['i3-nagbar', '-m', msg, '-t', level],
stdout=open('/dev/null', 'w'),
stderr=open('/dev/null', 'w')