blob: b8d07e7fff6952471b5d434f6cfc9544d8ffd12f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
local gtimer = require "gears.timer"
local qfs = require "quarrel.fs"
gtimer {
timeout = 1,
call_now = true,
autostart = true,
callback = function()
local brightness = qfs.read("/sys/class/backlight/amdgpu_bl0/actual_brightness", "n")
awesome.emit_signal("services::brightness", brightness)
end
}
|