dotfiles from arch

This commit is contained in:
2025-09-28 11:39:12 +02:00
parent 75885729cd
commit d1c6923bbb
1358 changed files with 575835 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
if _G['HELP'] then
require 'cli.help'
os.exit(0, true)
end
if _G['VERSION'] then
require 'cli.version'
os.exit(0, true)
end
if _G['CHECK'] then
local ret = require 'cli.check'.runCLI()
os.exit(ret, true)
end
if _G['CHECK_WORKER'] then
local ret = require 'cli.check_worker'.runCLI()
os.exit(ret or 0, true)
end
if _G['DOC_UPDATE'] then
require 'cli.doc' .runCLI()
os.exit(0, true)
end
if _G['DOC'] then
require 'cli.doc' .runCLI()
os.exit(0, true)
end
if _G['VISUALIZE'] then
local ret = require 'cli.visualize' .runCLI()
os.exit(ret or 0, true)
end