update: add hypridle module

This commit is contained in:
2026-05-28 02:49:14 -04:00
parent d41059af1b
commit b316a18464
2 changed files with 12 additions and 0 deletions
+1
View File
@@ -14,6 +14,7 @@ settings["systemd"] = false
---@type table<string, boolean>
settings["modules"] = {
hypridle = true,
waybar = true,
swaync = true,
swayosd = true,
+11
View File
@@ -0,0 +1,11 @@
local M = {}
local function start_hypridle()
hl.exec_cmd("hypridle")
end
M.autostart = {
start_hypridle,
}
return M