Files
hyprlua/hyprland.lua
T
Nina Chlóe Kassandra Reiß bed13f328a Quick access and action shortcuts
2026-07-02 16:05:05 +02:00

15 lines
374 B
Lua

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