Merge pull request #994 from zetxx/patch-1
feat: add `disabled` parameter
This commit is contained in:
commit
fcda13cac0
1 changed files with 2 additions and 0 deletions
|
@ -28,6 +28,8 @@ class Module(core.module.Module):
|
|||
self.__states = {"unknown": ["unknown", "critical"],
|
||||
"true": ["muted", "warning"],
|
||||
"false": ["unmuted"]}
|
||||
if util.format.asbool(self.parameter("disabled", False)):
|
||||
util.cli.execute("dunstctl set-paused true", ignore_errors=True)
|
||||
|
||||
def toggle_state(self, event):
|
||||
util.cli.execute("dunstctl set-paused toggle", ignore_errors=True)
|
||||
|
|
Loading…
Reference in a new issue