diff options
author | Squibid <me@zacharyscheiman.com> | 2023-07-09 21:38:56 -0400 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2023-07-09 21:38:56 -0400 |
commit | b14b797f5629bbf9da935e4b09832e32a69f9a13 (patch) | |
tree | 3cde7961f9979be0c51e7863c5a0666c8dfc0b86 /eatit-cfg.lua | |
parent | ae1639c8d673e7affe24871db256a956258ccf83 (diff) | |
download | eat-it-b14b797f5629bbf9da935e4b09832e32a69f9a13.tar.gz eat-it-b14b797f5629bbf9da935e4b09832e32a69f9a13.tar.bz2 eat-it-b14b797f5629bbf9da935e4b09832e32a69f9a13.zip |
make update key customisable, and change wording on a comment
Diffstat (limited to '')
-rw-r--r-- | eatit-cfg.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/eatit-cfg.lua b/eatit-cfg.lua index 6c2fac3..7d3eb76 100644 --- a/eatit-cfg.lua +++ b/eatit-cfg.lua @@ -29,6 +29,7 @@ plugins = { -- the plugins you want to load -- options for eat it opts = { + bind = 'U', logging = { -- options for logging log = true, logdate = '[%H:%M:%S]:', @@ -36,6 +37,6 @@ opts = { }, dl = { -- options for dealing with the git repos dir = '/tmp/mpv-eatit', - powerwash = false, -- if true the tmp dir gets deleted after mpv closes + powerwash = false, -- if true the dl dir gets deleted after mpv closes } } |