diff options
Diffstat (limited to 'config/hypr/configs/system_settings.lua')
| -rw-r--r-- | config/hypr/configs/system_settings.lua | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/config/hypr/configs/system_settings.lua b/config/hypr/configs/system_settings.lua new file mode 100644 index 00000000..5bd22627 --- /dev/null +++ b/config/hypr/configs/system_settings.lua @@ -0,0 +1,17 @@ +-- ================================================== +-- KoolDots (2026) +-- Project URL: https://github.com/LinuxBeginnings +-- License: GNU GPLv3 +-- SPDX-License-Identifier: GPL-3.0-or-later +-- ================================================== +-- System settings for the Lua workflow. +-- Loaded by user_overrides.lua on every Hyprland session start. +-- Delegates to lua/settings.lua which contains the canonical settings. + +local configHome = os.getenv("XDG_CONFIG_HOME") or ((os.getenv("HOME") or "") .. "/.config") +local hyprDir = configHome .. "/hypr" +local settings_path = hyprDir .. "/lua/settings.lua" +local ok, err = pcall(dofile, settings_path) +if not ok then + print("[ERROR] system_settings: failed to load lua/settings.lua: " .. tostring(err)) +end |
