diff options
author | Squibid <me@zacharyscheiman.com> | 2023-07-03 15:46:41 -0400 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2023-07-03 15:46:41 -0400 |
commit | f183533b821c157b1d2a51c655477c9ca046d2f0 (patch) | |
tree | 3abc53471c5234c0411e0df31ecaeef00b8f400d /eatit.lua | |
parent | ac214b808d419b3d54e597895bc9baa8b210d43b (diff) | |
download | eat-it-f183533b821c157b1d2a51c655477c9ca046d2f0.tar.gz eat-it-f183533b821c157b1d2a51c655477c9ca046d2f0.tar.bz2 eat-it-f183533b821c157b1d2a51c655477c9ca046d2f0.zip |
comments
Diffstat (limited to '')
-rw-r--r-- | eatit.lua | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -16,8 +16,10 @@ GNU General Public License for more details. local mp = require('mp') +-- load the config file dofile(mp.command_native({'expand-path', '~~/eatit-cfg.lua'})) +-- helper functions -- local function tablelength(T) local count = 0 for _ in pairs(T) do count = count + 1 end @@ -76,6 +78,7 @@ local function checkupdates(i, pluginfile, pluginlink) end end +-- start install local function startinstall() logwrite('Starting Download...') for i = 1, tablelength(plugins) do |