From ecc9bcc2706d2a26309cb48c2d2c7ee6c62e808a Mon Sep 17 00:00:00 2001 From: Dave Davenport Date: Thu, 6 Jul 2017 18:09:25 +0200 Subject: Re-add some of the old theme options, so theme converter use them. - line margin - separator style. - fake transparency. - line padding. - scrollbar width --- config/config.c | 38 ++++++++++++++++++++++++-------------- 1 file changed, 24 insertions(+), 14 deletions(-) (limited to 'config') diff --git a/config/config.c b/config/config.c index 82ba390d..fa8d4238 100644 --- a/config/config.c +++ b/config/config.c @@ -111,19 +111,29 @@ Settings config = { .matching_method = MM_NORMAL, /** Monitor */ .monitor = "-5", + /** set line margin */ + .line_margin = 2, + .line_padding = 1, /** Set filter */ - .filter = NULL, - .fullscreen = FALSE, - .dpi = -1, - .threads = 0, - .scroll_method = 0, - .window_format = "{w} {i}{c} {t}", - .click_to_exit = TRUE, - .show_match = TRUE, - .theme = NULL, - .color_normal = NULL, - .color_active = NULL, - .color_urgent = NULL, - .color_window = NULL, - .plugin_path = PLUGIN_PATH, + .filter = NULL, + /** Separator style: dash/solid */ + .separator_style = "dash", + /** Hide scrollbar */ + .hide_scrollbar = FALSE, + .fullscreen = FALSE, + .fake_transparency = FALSE, + .dpi = -1, + .threads = 0, + .scroll_method = 0, + .scrollbar_width = 8, + .fake_background = "screenshot", + .window_format = "{w} {i}{c} {t}", + .click_to_exit = TRUE, + .show_match = TRUE, + .theme = NULL, + .color_normal = NULL, + .color_active = NULL, + .color_urgent = NULL, + .color_window = NULL, + .plugin_path = PLUGIN_PATH, }; -- cgit v1.2.3