about summary refs log tree commit diff
path: root/pkgs/profpatsch/backlight/backlight.py
blob: d580260a0ade3d80d5f0e94e329d840d4a664aff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env python3
# xbacklight uses a linear percentage,
# but the backlight intensity is actually logarithmic *facepalm*.
# So we read the current "percentage" given by xbacklight
# and calculate the next step, base 2.

import subprocess as sub
import math
import sys

xbacklight = "xbacklight"

def usage():
    print("usage: backlight [inc|dec]", file=sys.stderr)
    sys.exit(1)

# read current value
current_backlight = float(sub.run(xbacklight, stdout=sub.PIPE).stdout.strip())
# find the actual value, base 2
current_val = round(math.sqrt(current_backlight))

if len(sys.argv) == 1: usage()
else:
    mode = sys.argv[1]

# modify actual value
if mode == "inc":
    new_val = current_val + 1
elif mode == "dec":
    new_val = current_val - 1
else:
    usage()

# clamp value
new_backlight = min(10, max(0, new_val))

# pow it again and set
sub.run([xbacklight, "-set", str(math.pow(new_backlight, 2))])