allow user defined configs at startup and only reset logfile on startup

This commit is contained in:
2023-07-03 15:55:14 -04:00
parent 1d5e908b77
commit 3f6fabd346

View File

@ -157,7 +157,24 @@ local function initupdate()
end
closelog()
end
end
-- run any user defined configs at startup
local function runopts()
openlog()
for i = 1, tablelength(plugins) do
if plugins[i]['cfg'] then
logwrite('Running ' .. plugins[i]['file'] .. '\'s config')
plugins[i]['cfg']()
end
end
closelog()
end
-- remove logfile on startup
openlog()
os.remove(fn)
closelog()
runopts()
mp.add_key_binding('U', 'UpdatePlugins', initupdate)