15 lines
238 B
Lua
15 lines
238 B
Lua
local M = {}
|
|
local events = require("lua.lib.events")
|
|
|
|
M.autostart = {
|
|
function()
|
|
hl.exec_cmd("~/dotfiles/hypr/scripts/init-wallpaper-engine.sh")
|
|
end,
|
|
}
|
|
|
|
function M.load()
|
|
events.map("hyprland.start", M.autostart)
|
|
end
|
|
|
|
return M
|