diff options
| author | Ultrabug <ultrabug@gentoo.org> | 2014-12-21 20:30:20 +0100 |
|---|---|---|
| committer | Ultrabug <ultrabug@gentoo.org> | 2014-12-21 20:30:20 +0100 |
| commit | a9d2fda795510708382b9b8be81527ec330456d0 (patch) | |
| tree | 3f5fff5e12ce2ad69bc934709b0786890762a838 /py3status | |
| parent | d07f360da83260c811875a79ae5e5441612bee80 (diff) | |
make i3-nagbar messages non blocking to py3status
Diffstat (limited to 'py3status')
| -rwxr-xr-x | py3status/__init__.py | 2 |
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') |
