feat(brightness): set brightness max during daytime

This commit is contained in:
2026-07-25 01:54:14 +02:00
parent f8786cc8a5
commit b820d8b10f
+6
View File
@@ -8,3 +8,9 @@ hl.on("hyprland.start", function()
hl.exec_cmd("hyprsunset -i")
hl.exec_cmd("nextcloud --background")
end)
local time = tonumber(os.date("%H"))
if time < 22 and time > 9 then
hl.exec_cmd("brightnessctl s 100%")
end