format code to be flake8 conform
This commit is contained in:
parent
7398bf9f94
commit
30789499f5
1 changed files with 9 additions and 9 deletions
|
@ -13,11 +13,11 @@ import bumblebee.input
|
||||||
import bumblebee.output
|
import bumblebee.output
|
||||||
import bumblebee.engine
|
import bumblebee.engine
|
||||||
|
|
||||||
|
|
||||||
class Module(bumblebee.engine.Module):
|
class Module(bumblebee.engine.Module):
|
||||||
def __init__(self, engine, config):
|
def __init__(self, engine, config):
|
||||||
super(Module, self).__init__(engine, config,
|
super(Module, self).__init__(engine, config,
|
||||||
bumblebee.output.Widget(full_text=self.brightness)
|
bumblebee.output.Widget(full_text=self.brightness))
|
||||||
)
|
|
||||||
self._brightness = 0
|
self._brightness = 0
|
||||||
|
|
||||||
self._device_path = self.parameter("device_path", "/sys/class/backlight/intel_backlight")
|
self._device_path = self.parameter("device_path", "/sys/class/backlight/intel_backlight")
|
||||||
|
@ -25,19 +25,19 @@ class Module(bumblebee.engine.Module):
|
||||||
|
|
||||||
if bumblebee.util.which("light"):
|
if bumblebee.util.which("light"):
|
||||||
engine.input.register_callback(self, button=bumblebee.input.WHEEL_UP,
|
engine.input.register_callback(self, button=bumblebee.input.WHEEL_UP,
|
||||||
cmd="light -A {}%".format(step))
|
cmd="light -A {}%".format(step))
|
||||||
engine.input.register_callback(self, button=bumblebee.input.WHEEL_DOWN,
|
engine.input.register_callback(self, button=bumblebee.input.WHEEL_DOWN,
|
||||||
cmd="light -U {}%".format(step))
|
cmd="light -U {}%".format(step))
|
||||||
elif bumblebee.util.which("brightnessctl"):
|
elif bumblebee.util.which("brightnessctl"):
|
||||||
engine.input.register_callback(self, button=bumblebee.input.WHEEL_UP,
|
engine.input.register_callback(self, button=bumblebee.input.WHEEL_UP,
|
||||||
cmd="brightnessctl s {}%+".format(step))
|
cmd="brightnessctl s {}%+".format(step))
|
||||||
engine.input.register_callback(self, button=bumblebee.input.WHEEL_DOWN,
|
engine.input.register_callback(self, button=bumblebee.input.WHEEL_DOWN,
|
||||||
cmd="brightnessctl s {}%-".format(step))
|
cmd="brightnessctl s {}%-".format(step))
|
||||||
else:
|
else:
|
||||||
engine.input.register_callback(self, button=bumblebee.input.WHEEL_UP,
|
engine.input.register_callback(self, button=bumblebee.input.WHEEL_UP,
|
||||||
cmd="xbacklight +{}%".format(step))
|
cmd="xbacklight +{}%".format(step))
|
||||||
engine.input.register_callback(self, button=bumblebee.input.WHEEL_DOWN,
|
engine.input.register_callback(self, button=bumblebee.input.WHEEL_DOWN,
|
||||||
cmd="xbacklight -{}%".format(step))
|
cmd="xbacklight -{}%".format(step))
|
||||||
|
|
||||||
def brightness(self, widget):
|
def brightness(self, widget):
|
||||||
if isinstance(self._brightness, float):
|
if isinstance(self._brightness, float):
|
||||||
|
@ -51,7 +51,7 @@ class Module(bumblebee.engine.Module):
|
||||||
backlight = int(f.readline())
|
backlight = int(f.readline())
|
||||||
with open("{}/max_brightness".format(self._device_path)) as f:
|
with open("{}/max_brightness".format(self._device_path)) as f:
|
||||||
max_brightness = int(f.readline())
|
max_brightness = int(f.readline())
|
||||||
self._brightness = float(backlight*100/max_brightness)
|
self._brightness = float(backlight * 100 / max_brightness)
|
||||||
except:
|
except:
|
||||||
return "Error"
|
return "Error"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue