diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-01-25 14:04:30 +0100 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-01-25 14:04:30 +0100 |
commit | db3eebea90e2a547c7892c060b56326df81c5d18 (patch) | |
tree | 186e8bd2a67e90d7cceb8b6122875bcbe332acb2 /config/common/mpv/scripts/mpv-cut/config.lua | |
parent | 06c3f38bb0d1b77902617bfa5757561262873124 (diff) |
Add mpv-cut and bindings
*Also added custom gitignore for mpv
Diffstat (limited to 'config/common/mpv/scripts/mpv-cut/config.lua')
-rw-r--r-- | config/common/mpv/scripts/mpv-cut/config.lua | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/config/common/mpv/scripts/mpv-cut/config.lua b/config/common/mpv/scripts/mpv-cut/config.lua new file mode 100644 index 0000000..4639cb7 --- /dev/null +++ b/config/common/mpv/scripts/mpv-cut/config.lua @@ -0,0 +1,19 @@ +-- Key config +KEY_CUT = "c" +KEY_CANCEL_CUT = "C" +KEY_CYCLE_ACTION = "a" +KEY_BOOKMARK_ADD = "i" +KEY_CHANNEL_INC = "=" +KEY_CHANNEL_DEC = "-" + +-- The list of channel names, you can choose whatever you want. +CHANNEL_NAMES[1] = "FUNNY" + +-- The default channel +CHANNEL = 1 + +-- The default action +ACTION = "COPY" + +-- Delete a default action +ACTIONS.LIST = nil
\ No newline at end of file |