Add some basic error handling in case the executables don't exist
This commit is contained in:
parent
61fe85842a
commit
c05fc3ae4d
1 changed files with 8 additions and 5 deletions
|
@ -30,11 +30,14 @@ class Module(bumblebee.engine.Module):
|
||||||
|
|
||||||
def _toggle(self, event):
|
def _toggle(self, event):
|
||||||
self._active = not self._active
|
self._active = not self._active
|
||||||
|
try:
|
||||||
if self._active:
|
if self._active:
|
||||||
bumblebee.util.execute("xdg-screensaver reset")
|
bumblebee.util.execute("xdg-screensaver reset")
|
||||||
bumblebee.util.execute("notify-send \"Consuming caffeine\"")
|
bumblebee.util.execute("notify-send \"Consuming caffeine\"")
|
||||||
else:
|
else:
|
||||||
bumblebee.util.execute("notify-send \"Out of coffee\"")
|
bumblebee.util.execute("notify-send \"Out of coffee\"")
|
||||||
|
except:
|
||||||
|
self._active = not self._active
|
||||||
|
|
||||||
def update(self, widgets):
|
def update(self, widgets):
|
||||||
if self._active:
|
if self._active:
|
||||||
|
|
Loading…
Reference in a new issue