1
0
mirror of https://github.com/Adorable-Catgirl/Zorya-NEO.git synced 2024-09-21 18:58:51 +10:00
Zorya-NEO/util/OpenOS/config.d/98_custom.lua

8 lines
192 B
Lua
Raw Normal View History

2020-03-20 07:50:37 +11:00
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()