[modules/dunst] Single quotes
This commit is contained in:
parent
b373de4cad
commit
4bc5f73ccc
1 changed files with 7 additions and 7 deletions
|
@ -1,6 +1,6 @@
|
|||
#pylint: disable=C0111,R0903
|
||||
|
||||
"""Toggle dunst notifications."""
|
||||
'''Toggle dunst notifications.'''
|
||||
|
||||
import bumblebee.input
|
||||
import bumblebee.output
|
||||
|
@ -10,12 +10,12 @@ import bumblebee.engine
|
|||
class Module(bumblebee.engine.Module):
|
||||
def __init__(self, engine, config):
|
||||
super(Module, self).__init__(engine, config,
|
||||
bumblebee.output.Widget(full_text="")
|
||||
bumblebee.output.Widget(full_text='')
|
||||
)
|
||||
self._paused = False
|
||||
# Make sure that dunst is currently not paused
|
||||
try:
|
||||
bumblebee.util.execute("killall -SIGUSR2 dunst")
|
||||
bumblebee.util.execute('killall -SIGUSR2 dunst')
|
||||
except:
|
||||
pass
|
||||
engine.input.register_callback(self, button=bumblebee.input.LEFT_MOUSE,
|
||||
|
@ -27,13 +27,13 @@ class Module(bumblebee.engine.Module):
|
|||
|
||||
try:
|
||||
if self._paused:
|
||||
bumblebee.util.execute("killall -SIGUSR1 dunst")
|
||||
bumblebee.util.execute('killall -SIGUSR1 dunst')
|
||||
else:
|
||||
bumblebee.util.execute("killall -SIGUSR2 dunst")
|
||||
bumblebee.util.execute('killall -SIGUSR2 dunst')
|
||||
except:
|
||||
self._paused = not self._paused # toggling failed
|
||||
|
||||
def state(self, widget):
|
||||
if self._paused:
|
||||
return ["muted", "warning"]
|
||||
return ["unmuted"]
|
||||
return ['muted', 'warning']
|
||||
return ['unmuted']
|
||||
|
|
Loading…
Reference in a new issue