16 lines
No EOL
500 B
Lua
16 lines
No EOL
500 B
Lua
-- hyprland.lua — entry point
|
|
-- https://wiki.hypr.land/Configuring/Start/
|
|
--
|
|
-- Each module lives in ~/.config/hypr/modules/
|
|
-- Edit the relevant file instead of this one.
|
|
|
|
require("modules.monitors")
|
|
require("modules.env")
|
|
require("modules.permissions") -- mostly commented out; safe to load
|
|
require("modules.autostart")
|
|
require("modules.look_and_feel")
|
|
require("modules.layouts")
|
|
require("modules.input")
|
|
require("modules.keybindings")
|
|
require("modules.window_rules")
|
|
require("modules.misc") |