aboutsummaryrefslogtreecommitdiffstats
path: root/eatit.lua
diff options
context:
space:
mode:
authorSquibid <me@zacharyscheiman.com>2023-07-09 21:39:34 -0400
committerSquibid <me@zacharyscheiman.com>2023-07-09 21:39:34 -0400
commit7f409007184d0d3ea5ae880f708b6284f99844d6 (patch)
treebbfdd9c6e4a9c35fd39bffcfc9cea567d089857a /eatit.lua
parentb14b797f5629bbf9da935e4b09832e32a69f9a13 (diff)
downloadeat-it-7f409007184d0d3ea5ae880f708b6284f99844d6.tar.gz
eat-it-7f409007184d0d3ea5ae880f708b6284f99844d6.tar.bz2
eat-it-7f409007184d0d3ea5ae880f708b6284f99844d6.zip
add osd message and use keybind in config file
Diffstat (limited to 'eatit.lua')
-rw-r--r--eatit.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/eatit.lua b/eatit.lua
index b6939a1..6bd70fe 100644
--- a/eatit.lua
+++ b/eatit.lua
@@ -98,6 +98,7 @@ end
-- start install
local function startinstall()
logwrite('Starting Download...')
+ mp.osd_message('Downloading plugins!')
for i = 1, tablelength(plugins) do
-- check if the user has defined a file for the current plugin
if not plugins[i]['file'] then
@@ -177,4 +178,4 @@ os.remove(fn)
closelog()
runopts()
-mp.add_key_binding('U', 'UpdatePlugins', initupdate)
+mp.add_key_binding(opts.bind, 'UpdatePlugins', initupdate)