Rewrite killing of xprop

This commit is contained in:
mw 2019-09-05 20:48:19 +02:00
parent 15fb6fc94d
commit a5ef863647

View file

@ -67,13 +67,17 @@ class Module(bumblebee.engine.Module):
return True
def _resume_screensaver(self):
pids = []
success = True
for process in psutil.process_iter():
if process.cmdline() == [bumblebee.util.which('xprop'), '-id', str(self._xid), '-spy']:
pids.append(process.pid)
for pid in pids:
try:
os.kill(process.pid, 9)
except OSError:
return False
return True
success = False
return success
def state(self, _):
if self._active: