summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2017-07-06 18:09:25 +0200
committerDave Davenport <qball@gmpclient.org>2017-07-06 18:20:32 +0200
commitecc9bcc2706d2a26309cb48c2d2c7ee6c62e808a (patch)
tree9f28c3ccc957d5ad486ff17d7c93e970838b63ad /config
parent36856ecbac2049077c046a3a5ba02432efc26501 (diff)
Re-add some of the old theme options, so theme converter use them.
- line margin - separator style. - fake transparency. - line padding. - scrollbar width
Diffstat (limited to 'config')
-rw-r--r--config/config.c38
1 files changed, 24 insertions, 14 deletions
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,
};