From 0b961e23049ac048effd2d70a17ccf108a6f2463 Mon Sep 17 00:00:00 2001 From: zetxx Date: Wed, 15 Mar 2017 23:02:13 +0200 Subject: [PATCH] fix: init type --- bumblebee/modules/amixer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bumblebee/modules/amixer.py b/bumblebee/modules/amixer.py index e8991fb..4ed7271 100644 --- a/bumblebee/modules/amixer.py +++ b/bumblebee/modules/amixer.py @@ -12,7 +12,7 @@ class Module(bumblebee.engine.Module): super(Module, self).__init__(engine, config, bumblebee.output.Widget(full_text=self.volume) ) - self._level = 0 + self._level = "0" self._muted = False device = self.parameter("device", "Master,0") self._cmdString = "amixer get {}".format(device)