mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
22 lines
766 B
Lua
22 lines
766 B
Lua
-- Omarchy Hyprland setup: helpers, defaults, and current theme overrides.
|
|
|
|
require("default.hypr.helpers")
|
|
local require_optional = require("default.hypr.require_optional")
|
|
|
|
-- Use Omarchy defaults, but don't edit these directly.
|
|
require("default.hypr.autostart")
|
|
if _G.omarchy_default_bindings ~= false then
|
|
require("default.hypr.bindings.media")
|
|
require("default.hypr.bindings.clipboard")
|
|
require("default.hypr.bindings.tiling-v2")
|
|
require("default.hypr.bindings.utilities")
|
|
require_optional.module("default.hypr.bindings.applications")
|
|
end
|
|
require("default.hypr.envs")
|
|
require("default.hypr.looknfeel")
|
|
require("default.hypr.input")
|
|
require("default.hypr.windows")
|
|
|
|
-- Current theme overrides.
|
|
require_optional.module("omarchy.current.theme.hyprland")
|