11 lines
227 B
Lua
11 lines
227 B
Lua
local monitor = require("monitor")
|
|
local background = require("background")
|
|
local status_bar = require("status_bar")
|
|
|
|
-- on event
|
|
hl.on("hyprland.start", function()
|
|
monitor.start()
|
|
background.start()
|
|
status_bar.start()
|
|
end)
|