12 lines
121 B
Lua
12 lines
121 B
Lua
local M = {}
|
|
|
|
local function start_hypridle()
|
|
hl.exec_cmd("hypridle")
|
|
end
|
|
|
|
M.autostart = {
|
|
start_hypridle,
|
|
}
|
|
|
|
return M
|