mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
25 lines
746 B
Lua
25 lines
746 B
Lua
-- Learn how to configure Hyprland: https://wiki.hypr.land/Configuring/Start/
|
|
|
|
-- Load user modules from ~/.config and Omarchy defaults from $OMARCHY_PATH.
|
|
package.path = os.getenv("HOME")
|
|
.. "/.config/?.lua;"
|
|
.. (os.getenv("OMARCHY_PATH") or (os.getenv("HOME") .. "/.local/share/omarchy"))
|
|
.. "/?.lua;"
|
|
.. package.path
|
|
|
|
-- All Omarchy default setups
|
|
require("default.hypr.omarchy")
|
|
|
|
-- Change your own setup in these files and override defaults.
|
|
require("hypr.monitors")
|
|
require("hypr.input")
|
|
require("hypr.bindings")
|
|
require("hypr.looknfeel")
|
|
require("hypr.autostart")
|
|
|
|
-- Toggle config flags dynamically.
|
|
require("default.hypr.toggles")
|
|
|
|
-- Add any other personal Hyprland configuration below.
|
|
-- o.window("qemu", { workspace = "5" })
|