From 6a9b591624d807b2cd544b9dfd7a2871531aa528 Mon Sep 17 00:00:00 2001 From: AMM Date: Wed, 3 Jan 2018 02:07:53 +0200 Subject: [PATCH] Add some labels to options.lua --- src/options.lua | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/options.lua b/src/options.lua index 33af055..73ed89c 100644 --- a/src/options.lua +++ b/src/options.lua @@ -6,6 +6,10 @@ local thumbnailer_options = { -- The thumbnail directory cache_directory = join_paths(default_cache_base, "mpv_thumbs_cache"), + ------------------------ + -- Generation options -- + ------------------------ + -- Automatically generate the thumbnails on video load, without a keypress autogenerate = true, @@ -38,6 +42,10 @@ local thumbnailer_options = { -- Disable the built-in keybind ("T") to add your own disable_keybinds = false, + --------------------- + -- Display options -- + --------------------- + -- Move the thumbnail up or down -- For example: -- topbar/bottombar: 24 @@ -70,6 +78,10 @@ local thumbnailer_options = { -- Do not display the thumbnailing progress hide_progress = false, + ----------------------- + -- Thumbnail options -- + ----------------------- + -- The maximum dimensions of the thumbnails (pixels) thumbnail_width = 200, thumbnail_height = 200,