diff options
| author | Don Williams <don.e.williams@gmail.com> | 2026-08-18 09:56:26 -0400 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2026-08-29 21:41:34 -0700 |
| commit | bc3513f9dab86998f0a2d8bc8f0092326443d392 (patch) | |
| tree | d402c0634645acd7516582cb5a54673794078243 /config/hypr/configs/system_settings.lua | |
| parent | d547b41873398d5c471104f7fdf7748232268cf8 (diff) | |
ENV variables not set in LUA workflow
Signed-off-by: Don Williams <don.e.williams@gmail.com>
On branch development
Your branch is up to date with 'origin/development'.
Changes to be committed:
modified: CHANGELOG.md
new file: config/hypr/configs/system_env.lua
new file: config/hypr/configs/system_laptops.lua
new file: config/hypr/configs/system_settings.lua
new file: config/hypr/configs/system_window_rules.lua
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 |
