Files
hyprlua/hyprland.lua
T
2026-06-19 13:47:37 +02:00

13 lines
280 B
Lua

-- Module devices
local monitor = require("monitor")
local background = require("background")
local status_bar = require("status_bar")
local devices = require("devices")
-- On event
hl.on("hyprland.start", function()
monitor.start()
background.start()
status_bar.start()
end)