diff options
author | Squibid <me@zacharyscheiman.com> | 2023-07-16 20:22:13 -0400 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2023-07-16 20:22:13 -0400 |
commit | 2162b9cd2e0d307fed376f909c75db6c0afac217 (patch) | |
tree | 4179b716010cfebb71af36537190ceed3a67d217 /eatit-cfg.lua | |
parent | a566b63fa56c4637ef76ecc01d2a470ecf836b46 (diff) | |
download | eat-it-2162b9cd2e0d307fed376f909c75db6c0afac217.tar.gz eat-it-2162b9cd2e0d307fed376f909c75db6c0afac217.tar.bz2 eat-it-2162b9cd2e0d307fed376f909c75db6c0afac217.zip |
add comments, change formatting on powerwash logging, ...
only remove log if logging is enabled
Diffstat (limited to 'eatit-cfg.lua')
-rw-r--r-- | eatit-cfg.lua | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/eatit-cfg.lua b/eatit-cfg.lua index 7d3eb76..dcdc95e 100644 --- a/eatit-cfg.lua +++ b/eatit-cfg.lua @@ -18,10 +18,11 @@ GNU General Public License for more details. -- after being called with dofile() plugins = { -- the plugins you want to load - { 'https://git.squi.bid/eat-it', - file = 'eatit.lua', - dir = 'scripts', - cfg = function() + { 'https://git.squi.bid/eat-it', -- required, specifies the git repo + file = 'eatit.lua', -- required, specifies the desired file + dir = 'scripts', -- optional, sets the dest dir + branch = 'master', -- optional, sets the desired branch + cfg = function() -- optional, runs code on mpv startup print('this is an example') end }, |