Fork the desktop off Omarchy as a self-contained system

This commit is contained in:
2026-09-19 23:50:39 -04:00
parent 16a56f49a1
commit 9501f2bb4d
559 changed files with 43273 additions and 0 deletions
+39
View File
@@ -0,0 +1,39 @@
-- Require every *.lua file in a directory in sorted order.
-- Used for Blob extension-style folders such as default/hypr/apps,
-- default/hypr/bindings, and ~/.local/state/blob/toggles/hypr.
-- Pass a module prefix for normal package.path modules, e.g.
-- require_all.files(paths.blob_path .. "/default/hypr/apps", "default.hypr.apps")
-- Pass nil as the prefix when the directory itself has been added to package.path.
-- Pass options.exclude as a set of base names (without ".lua") to skip; a legacy
-- file that must never be loaded as code stays on disk for a migration to remove.
local M = {}
local function shell_quote(path)
return "'" .. path:gsub("'", "'\\''") .. "'"
end
function M.files(dir, module_prefix, options)
local exclude = options and options.exclude or {}
local handle = io.popen("find " .. shell_quote(dir) .. " -maxdepth 1 -type f -name '*.lua' -printf '%f\\n' 2>/dev/null | sort")
if handle then
for filename in handle:lines() do
local name = filename:gsub("%.lua$", "")
if not exclude[name] then
local module = name
if module_prefix then
module = module_prefix .. "." .. module
end
if options and options.reload then
package.loaded[module] = nil
end
require(module)
end
end
handle:close()
end
end
return M