mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-07 12:40:55 +02:00
9 lines
277 B
Lua
9 lines
277 B
Lua
-- Hyprland bootstrap for Omarchy's Lua module path.
|
|
|
|
-- Load user modules from ~/.config and Omarchy defaults from $OMARCHY_PATH.
|
|
package.path = os.getenv("HOME")
|
|
.. "/.config/?.lua;"
|
|
.. (os.getenv("OMARCHY_PATH") or "/usr/share/omarchy")
|
|
.. "/?.lua;"
|
|
.. package.path
|