diff options
| author | Don Williams <don.e.williams@gmail.com> | 2026-08-15 10:35:59 -0400 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2026-08-29 21:41:34 -0700 |
| commit | bb4fdfc9933f5bcb95919c2b9565a0b6693356d9 (patch) | |
| tree | 287c526e8b3d131ed8be6e62d600b676bdf52af7 | |
| parent | 2b45c8380e9c2561ea293ce26790aaa437f6c8dc (diff) | |
Added startup lua file for new installs
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:
new file: config/hypr/configs/system_startup.lua
| -rw-r--r-- | config/hypr/configs/system_startup.lua | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/config/hypr/configs/system_startup.lua b/config/hypr/configs/system_startup.lua new file mode 100644 index 00000000..0c077b0a --- /dev/null +++ b/config/hypr/configs/system_startup.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 startup commands for the Lua workflow. +-- Loaded by user_overrides.lua on every Hyprland session start. +-- Delegates to lua/startup.lua which contains the canonical startup command list. + +local configHome = os.getenv("XDG_CONFIG_HOME") or ((os.getenv("HOME") or "") .. "/.config") +local hyprDir = configHome .. "/hypr" +local startup_path = hyprDir .. "/lua/startup.lua" +local ok, err = pcall(dofile, startup_path) +if not ok then + print("[ERROR] system_startup: failed to load lua/startup.lua: " .. tostring(err)) +end |
