summaryrefslogtreecommitdiff
path: root/awesome/rc.lua
diff options
context:
space:
mode:
authorzachir <zachir@librem.one>2023-02-12 01:41:06 -0600
committerzachir <zachir@librem.one>2023-02-12 01:41:06 -0600
commit161a6efd7e0ec2655d33b12271911b79b30559b2 (patch)
treea87ce155cbab25b87d2f38a3a2fe2cf0f6029c33 /awesome/rc.lua
parent11b53c95c96b7f50cea42e45f1811610514573c7 (diff)
parse bl from computerrc to determine backlight command
Diffstat (limited to 'awesome/rc.lua')
-rw-r--r--awesome/rc.lua4
1 files changed, 3 insertions, 1 deletions
diff --git a/awesome/rc.lua b/awesome/rc.lua
index 28ed104..66ecb28 100644
--- a/awesome/rc.lua
+++ b/awesome/rc.lua
@@ -288,6 +288,8 @@ awful.screen.connect_for_each_screen(function(s)
batt = crcparse("batt")
+ light = crcparse("bl")
+
if batt == "y" then
battery = battery_widget {
font = font,
@@ -349,7 +351,7 @@ awful.screen.connect_for_each_screen(function(s)
}),
brightness_widget {
type = "arc",
- program = "light",
+ program = light,
step = 5,
base = 20,
path_to_icon = "/usr/share/icons/Paper/scalable/status/display-brightness-symbolic.svg",