[formatting] reformat using "black -t py34"
getting rid of thinking about consistent formatting...
This commit is contained in:
parent
fa98bcbdd1
commit
30c1f712a6
119 changed files with 3961 additions and 3495 deletions
|
@ -1,6 +1,6 @@
|
|||
# pylint: disable=C0111,R0903
|
||||
|
||||
'''Displays volume and mute status and controls for PulseAudio devices. Use wheel up and down to change volume, left click mutes, right click opens pavucontrol.
|
||||
"""Displays volume and mute status and controls for PulseAudio devices. Use wheel up and down to change volume, left click mutes, right click opens pavucontrol.
|
||||
|
||||
Aliases: pasink (use this to control output instead of input), pasource
|
||||
|
||||
|
@ -16,7 +16,7 @@ Requires the following executable:
|
|||
* pulseaudio
|
||||
* pactl
|
||||
* pavucontrol
|
||||
'''
|
||||
"""
|
||||
|
||||
import re
|
||||
import logging
|
||||
|
@ -29,15 +29,18 @@ import util.cli
|
|||
import util.graph
|
||||
import util.format
|
||||
|
||||
|
||||
class Module(core.module.Module):
|
||||
def __init__(self, config, theme, channel):
|
||||
super().__init__(config, theme, core.widget.Widget(self.volume))
|
||||
|
||||
if util.format.asbool(self.parameter('autostart', False)):
|
||||
util.cli.execute('pulseaudio --start', ignore_errors=True)
|
||||
if util.format.asbool(self.parameter("autostart", False)):
|
||||
util.cli.execute("pulseaudio --start", ignore_errors=True)
|
||||
|
||||
self._change = util.format.asint(self.parameter('percent_change', '2%').strip('%'), 0, 100)
|
||||
self._limit = util.format.asint(self.parameter('limit', '0%').strip('%'), 0)
|
||||
self._change = util.format.asint(
|
||||
self.parameter("percent_change", "2%").strip("%"), 0, 100
|
||||
)
|
||||
self._limit = util.format.asint(self.parameter("limit", "0%").strip("%"), 0)
|
||||
|
||||
self._left = 0
|
||||
self._right = 0
|
||||
|
@ -45,131 +48,153 @@ class Module(core.module.Module):
|
|||
self._mute = False
|
||||
self._failed = False
|
||||
self._channel = channel
|
||||
self._showbars = util.format.asbool(self.parameter('showbars', 0))
|
||||
self._showbars = util.format.asbool(self.parameter("showbars", 0))
|
||||
|
||||
self._patterns = [
|
||||
{'expr': 'Name:', 'callback': (lambda line: False)},
|
||||
{'expr': 'Mute:', 'callback': (lambda line: self.mute(False if ' no' in line.lower() else True))},
|
||||
{'expr': 'Volume:', 'callback': self.getvolume},
|
||||
{"expr": "Name:", "callback": (lambda line: False)},
|
||||
{
|
||||
"expr": "Mute:",
|
||||
"callback": (
|
||||
lambda line: self.mute(False if " no" in line.lower() else True)
|
||||
),
|
||||
},
|
||||
{"expr": "Volume:", "callback": self.getvolume},
|
||||
]
|
||||
|
||||
core.input.register(self, button=core.input.RIGHT_MOUSE, cmd='pavucontrol')
|
||||
core.input.register(self, button=core.input.RIGHT_MOUSE, cmd="pavucontrol")
|
||||
|
||||
events = [
|
||||
{'type': 'mute', 'action': self.toggle, 'button': core.input.LEFT_MOUSE},
|
||||
{'type': 'volume', 'action': self.increase_volume, 'button': core.input.WHEEL_UP},
|
||||
{'type': 'volume', 'action': self.decrease_volume, 'button': core.input.WHEEL_DOWN},
|
||||
{"type": "mute", "action": self.toggle, "button": core.input.LEFT_MOUSE},
|
||||
{
|
||||
"type": "volume",
|
||||
"action": self.increase_volume,
|
||||
"button": core.input.WHEEL_UP,
|
||||
},
|
||||
{
|
||||
"type": "volume",
|
||||
"action": self.decrease_volume,
|
||||
"button": core.input.WHEEL_DOWN,
|
||||
},
|
||||
]
|
||||
|
||||
for event in events:
|
||||
core.input.register(self, button=event['button'], cmd=event['action'])
|
||||
core.input.register(self, button=event["button"], cmd=event["action"])
|
||||
|
||||
def set_volume(self, amount):
|
||||
util.cli.execute('pactl set-{}-{} @DEFAULT_{}@ {}'.format(
|
||||
self._channel, 'volume', self._channel.upper(), amount))
|
||||
util.cli.execute(
|
||||
"pactl set-{}-{} @DEFAULT_{}@ {}".format(
|
||||
self._channel, "volume", self._channel.upper(), amount
|
||||
)
|
||||
)
|
||||
|
||||
def increase_volume(self, event):
|
||||
if self._limit > 0: # we need to check the limit
|
||||
if self._limit > 0: # we need to check the limit
|
||||
left = int(self._left)
|
||||
right = int(self._right)
|
||||
if left + self._change >= self._limit or right + self._change >= self._limit:
|
||||
if (
|
||||
left + self._change >= self._limit
|
||||
or right + self._change >= self._limit
|
||||
):
|
||||
if left == right:
|
||||
# easy case, just set to limit
|
||||
self.set_volume('{}%'.format(self._limit))
|
||||
self.set_volume("{}%".format(self._limit))
|
||||
return
|
||||
else:
|
||||
# don't adjust anymore, since i don't know how to update only one channel
|
||||
return
|
||||
|
||||
self.set_volume('+{}%'.format(self._change))
|
||||
self.set_volume("+{}%".format(self._change))
|
||||
|
||||
def decrease_volume(self, event):
|
||||
self.set_volume('-{}%'.format(self._change))
|
||||
self.set_volume("-{}%".format(self._change))
|
||||
|
||||
def toggle(self, event):
|
||||
util.cli.execute('pactl set-{}-mute @DEFAULT_{}@ toggle'.format(
|
||||
self._channel, self._channel.upper()))
|
||||
util.cli.execute(
|
||||
"pactl set-{}-mute @DEFAULT_{}@ toggle".format(
|
||||
self._channel, self._channel.upper()
|
||||
)
|
||||
)
|
||||
|
||||
def mute(self, value):
|
||||
self._mute = value
|
||||
|
||||
def getvolume(self, line):
|
||||
if 'mono' in line:
|
||||
m = re.search(r'mono:.*\s*\/\s*(\d+)%', line)
|
||||
if "mono" in line:
|
||||
m = re.search(r"mono:.*\s*\/\s*(\d+)%", line)
|
||||
if m:
|
||||
self._mono = m.group(1)
|
||||
else:
|
||||
m = re.search(r'left:.*\s*\/\s*(\d+)%.*right:.*\s*\/\s*(\d+)%', line)
|
||||
m = re.search(r"left:.*\s*\/\s*(\d+)%.*right:.*\s*\/\s*(\d+)%", line)
|
||||
if m:
|
||||
self._left = m.group(1)
|
||||
self._right = m.group(2)
|
||||
|
||||
def _default_device(self):
|
||||
output = util.cli.execute('pactl info')
|
||||
pattern = 'Default {}: '.format('Sink' if self._channel == 'sink' else 'Source')
|
||||
for line in output.split('\n'):
|
||||
output = util.cli.execute("pactl info")
|
||||
pattern = "Default {}: ".format("Sink" if self._channel == "sink" else "Source")
|
||||
for line in output.split("\n"):
|
||||
if line.startswith(pattern):
|
||||
return line.replace(pattern, '')
|
||||
logging.error('no pulseaudio device found')
|
||||
return 'n/a'
|
||||
return line.replace(pattern, "")
|
||||
logging.error("no pulseaudio device found")
|
||||
return "n/a"
|
||||
|
||||
def volume(self, widget):
|
||||
if self._failed == True:
|
||||
return 'n/a'
|
||||
return "n/a"
|
||||
if int(self._mono) > 0:
|
||||
vol = '{}%'.format(self._mono)
|
||||
vol = "{}%".format(self._mono)
|
||||
if self._showbars:
|
||||
vol = '{} {}'.format(
|
||||
vol, util.graph.hbar(float(self._mono)))
|
||||
vol = "{} {}".format(vol, util.graph.hbar(float(self._mono)))
|
||||
return vol
|
||||
elif self._left == self._right:
|
||||
vol = '{}%'.format(self._left)
|
||||
vol = "{}%".format(self._left)
|
||||
if self._showbars:
|
||||
vol = '{} {}'.format(
|
||||
vol, util.graph.hbar(float(self._left)))
|
||||
vol = "{} {}".format(vol, util.graph.hbar(float(self._left)))
|
||||
return vol
|
||||
else:
|
||||
vol = '{}%/{}%'.format(self._left, self._right)
|
||||
vol = "{}%/{}%".format(self._left, self._right)
|
||||
if self._showbars:
|
||||
vol = '{} {}{}'.format(
|
||||
vol = "{} {}{}".format(
|
||||
vol,
|
||||
util.graph.hbar(float(self._left)),
|
||||
util.graph.hbar(float(self._right)))
|
||||
util.graph.hbar(float(self._right)),
|
||||
)
|
||||
return vol
|
||||
|
||||
def update(self):
|
||||
try:
|
||||
self._failed = False
|
||||
channel = 'sinks' if self._channel == 'sink' else 'sources'
|
||||
channel = "sinks" if self._channel == "sink" else "sources"
|
||||
device = self._default_device()
|
||||
|
||||
result = util.cli.execute('pactl list {}'.format(channel))
|
||||
result = util.cli.execute("pactl list {}".format(channel))
|
||||
found = False
|
||||
|
||||
for line in result.split('\n'):
|
||||
if 'Name: {}'.format(device) in line:
|
||||
for line in result.split("\n"):
|
||||
if "Name: {}".format(device) in line:
|
||||
found = True
|
||||
continue
|
||||
if found is False:
|
||||
continue
|
||||
for pattern in self._patterns:
|
||||
if not pattern['expr'] in line:
|
||||
if not pattern["expr"] in line:
|
||||
continue
|
||||
if pattern['callback'](line) is False and found == True:
|
||||
if pattern["callback"](line) is False and found == True:
|
||||
return
|
||||
except Exception as e:
|
||||
self._failed = True
|
||||
logging.exception(e)
|
||||
if util.format.asbool(self.parameter('autostart', False)):
|
||||
util.cli.execute('pulseaudio --start', ignore_errors=True)
|
||||
if util.format.asbool(self.parameter("autostart", False)):
|
||||
util.cli.execute("pulseaudio --start", ignore_errors=True)
|
||||
else:
|
||||
raise e
|
||||
|
||||
def state(self, widget):
|
||||
if self._mute:
|
||||
return ['warning', 'muted']
|
||||
return ["warning", "muted"]
|
||||
if int(self._left) > int(100):
|
||||
return ['critical', 'unmuted']
|
||||
return ['unmuted']
|
||||
return ["critical", "unmuted"]
|
||||
return ["unmuted"]
|
||||
|
||||
|
||||
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue