Move current theme state to local state
This commit is contained in:
@@ -1,7 +1,12 @@
|
||||
-- Hyprland bootstrap for Omarchy's Lua module path.
|
||||
|
||||
-- Load user modules from ~/.config and Omarchy defaults from $OMARCHY_PATH.
|
||||
package.path = os.getenv("HOME")
|
||||
local home = os.getenv("HOME")
|
||||
|
||||
-- Load generated state from ~/.local/state, user modules from ~/.config, and
|
||||
-- Omarchy defaults from $OMARCHY_PATH.
|
||||
package.path = home
|
||||
.. "/.local/state/?.lua;"
|
||||
.. home
|
||||
.. "/.config/?.lua;"
|
||||
.. (os.getenv("OMARCHY_PATH") or "/usr/share/omarchy")
|
||||
.. "/?.lua;"
|
||||
|
||||
Reference in New Issue
Block a user