mirror of
https://github.com/Adorable-Catgirl/Zorya-NEO.git
synced 2024-11-14 22:38:07 +11:00
8 lines
192 B
Lua
8 lines
192 B
Lua
local cfgadd = ...
|
|
local fs = require("filesystem")
|
|
if not fs.exists("/etc/zorya-neo/custom.lua") then
|
|
return
|
|
end
|
|
local f = io.open("/etc/zorya-neo/custom.lua")
|
|
cfgadd(f:read("*a"))
|
|
f:close() |