2020-03-07 13:34:02 +01:00
|
|
|
# pylint: disable=C0111,R0903
|
|
|
|
|
2020-03-07 13:34:22 +01:00
|
|
|
'''Displays the brightness of a display
|
2020-03-07 13:34:02 +01:00
|
|
|
|
|
|
|
Parameters:
|
|
|
|
* brightness.step: The amount of increase/decrease on scroll in % (defaults to 2)
|
|
|
|
* brightness.device_path: The device path (defaults to /sys/class/backlight/intel_backlight), can contain wildcards (in this case, the first matching path will be used)
|
|
|
|
|
2020-03-07 13:34:22 +01:00
|
|
|
'''
|
2020-03-07 13:34:02 +01:00
|
|
|
|
|
|
|
import glob
|
2020-03-07 13:37:56 +01:00
|
|
|
import shutil
|
2020-03-07 13:34:02 +01:00
|
|
|
|
2020-03-07 13:37:56 +01:00
|
|
|
import core.module
|
|
|
|
import core.widget
|
|
|
|
import core.input
|
2020-03-07 13:34:02 +01:00
|
|
|
|
2020-03-07 13:37:56 +01:00
|
|
|
class Module(core.module.Module):
|
|
|
|
def __init__(self, config=None):
|
|
|
|
super().__init__(config, core.widget.Widget(self.brightness))
|
|
|
|
|
|
|
|
self._brightness = 0
|
|
|
|
self._device_path = self.find_device(
|
|
|
|
self.parameter('device_path', '/sys/class/backlight/intel_backlight')
|
|
|
|
)
|
2020-03-07 13:34:22 +01:00
|
|
|
step = self.parameter('step', 2)
|
2020-03-07 13:34:02 +01:00
|
|
|
|
2020-03-07 13:37:56 +01:00
|
|
|
if shutil.which('light'):
|
|
|
|
self.register_cmd('light -A {}%'.format(step),
|
|
|
|
'light -U {}%'.format(step))
|
|
|
|
elif shutil.which('brightnessctl'):
|
|
|
|
self.register_cmd('brightnessctl s {}%+'.format(step),
|
|
|
|
'brightnessctl s {}%-'.format(step))
|
2020-03-07 13:34:02 +01:00
|
|
|
else:
|
2020-03-07 13:34:22 +01:00
|
|
|
self.register_cmd(engine, 'xbacklight +{}%'.format(step),
|
2020-03-07 13:37:56 +01:00
|
|
|
'xbacklight -{}%'.format(step))
|
2020-03-07 13:34:02 +01:00
|
|
|
|
|
|
|
def find_device(self, device_path):
|
|
|
|
res = glob.glob(device_path)
|
|
|
|
if len(res) == 0:
|
|
|
|
return device_path
|
|
|
|
return res[0]
|
|
|
|
|
2020-03-07 13:37:56 +01:00
|
|
|
def register_cmd(self, up_cmd, down_cmd):
|
|
|
|
core.input.register(self, button=core.input.WHEEL_UP, cmd=up_cmd)
|
|
|
|
core.input.register(self, button=core.input.WHEEL_DOWN, cmd=down_cmd)
|
2020-03-07 13:34:02 +01:00
|
|
|
|
|
|
|
def brightness(self, widget):
|
|
|
|
if isinstance(self._brightness, float):
|
2020-03-07 13:34:22 +01:00
|
|
|
return '{:3.0f}%'.format(self._brightness).strip()
|
2020-03-07 13:34:02 +01:00
|
|
|
else:
|
2020-03-07 13:34:22 +01:00
|
|
|
return 'n/a'
|
2020-03-07 13:34:02 +01:00
|
|
|
|
2020-03-07 13:37:56 +01:00
|
|
|
def update(self):
|
2020-03-07 13:34:02 +01:00
|
|
|
try:
|
2020-03-07 13:34:22 +01:00
|
|
|
with open('{}/brightness'.format(self._device_path)) as f:
|
2020-03-07 13:34:02 +01:00
|
|
|
backlight = int(f.readline())
|
2020-03-07 13:34:22 +01:00
|
|
|
with open('{}/max_brightness'.format(self._device_path)) as f:
|
2020-03-07 13:34:02 +01:00
|
|
|
max_brightness = int(f.readline())
|
|
|
|
self._brightness = float(backlight * 100 / max_brightness)
|
|
|
|
except:
|
2020-03-07 13:34:22 +01:00
|
|
|
return 'Error'
|
2020-03-07 13:34:02 +01:00
|
|
|
|
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|