bumblebee-status/bumblebee_status/modules/contrib/amixer.py

52 lines
1.3 KiB
Python
Raw Normal View History

2020-04-13 09:14:22 +02:00
"""get volume level
2020-04-13 09:19:18 +02:00
Parameters:
* amixer.device: Device to use, defaults to "Master,0"
contributed by `zetxx <https://github.com/zetxx>`_ - many thanks!
2020-04-13 09:14:22 +02:00
"""
import re
2020-04-13 09:19:18 +02:00
import core.module
import core.widget
2020-04-13 09:14:22 +02:00
2020-04-13 09:19:18 +02:00
import util.cli
2020-04-13 09:19:18 +02:00
class Module(core.module.Module):
def __init__(self, config, theme):
super().__init__(config, theme, core.widget.Widget(self.volume))
2020-04-13 09:19:18 +02:00
self.__level = "n/a"
2020-04-13 09:19:18 +02:00
self.__muted = True
device = self.parameter("device", "Master,0")
self._cmdString = "amixer get {}".format(device)
2020-04-13 09:14:22 +02:00
def volume(self, widget):
if self.__level == "n/a":
2020-04-13 09:19:18 +02:00
return self.__level
m = re.search(r"([\d]+)\%", self.__level)
2020-04-13 09:19:18 +02:00
self.__muted = True
2020-04-13 09:14:22 +02:00
if m:
if m.group(1) != "0" and "[on]" in self.__level:
2020-04-13 09:19:18 +02:00
self.__muted = False
return "{}%".format(m.group(1))
2020-04-13 09:14:22 +02:00
else:
return "0%"
2020-04-13 09:14:22 +02:00
2020-04-13 09:19:18 +02:00
def update(self):
2020-04-13 09:14:22 +02:00
try:
self.__level = util.cli.execute(
"amixer get {}".format(self.parameter("device", "Master,0"))
)
2020-04-13 09:14:22 +02:00
except Exception as e:
self.__level = "n/a"
2020-04-13 09:14:22 +02:00
def state(self, widget):
2020-04-13 09:19:18 +02:00
if self.__muted:
return ["warning", "muted"]
return ["unmuted"]
2020-04-13 09:19:18 +02:00
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4