mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-03 04:37:48 +02:00
25 lines
749 B
Lua
25 lines
749 B
Lua
-- Omarchy Hyprland setup: helpers, defaults, and current theme overrides.
|
|
|
|
require("default.hypr.helpers")
|
|
|
|
-- Use Omarchy defaults, but don't edit these directly.
|
|
require("default.hypr.autostart")
|
|
require("default.hypr.bindings.media")
|
|
require("default.hypr.bindings.clipboard")
|
|
require("default.hypr.bindings.tiling-v2")
|
|
require("default.hypr.bindings.utilities")
|
|
require("default.hypr.envs")
|
|
require("default.hypr.looknfeel")
|
|
require("default.hypr.input")
|
|
require("default.hypr.windows")
|
|
|
|
-- Current theme overrides.
|
|
do
|
|
local paths = require("default.hypr.paths")
|
|
local theme = io.open(paths.config_home .. "/omarchy/current/theme/hyprland.lua", "r")
|
|
if theme then
|
|
theme:close()
|
|
require("omarchy.current.theme.hyprland")
|
|
end
|
|
end
|