start cleaning up load_config
This commit is contained in:
parent
93446a222f
commit
83d1874f79
38
termite.cc
38
termite.cc
|
@ -862,36 +862,26 @@ static void load_config(GtkWindow *window, VteTerminal *vte, config_info *info,
|
||||||
*term = *s;
|
*term = *s;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (auto b = get_config_boolean(config, "options", "resize_grip")) {
|
|
||||||
gtk_window_set_has_resize_grip(window, *b);
|
auto get_bool_or = [config](const char *key, gboolean value) {
|
||||||
}
|
return get_config_boolean(config, "options", key).get_value_or(value);
|
||||||
if (auto b = get_config_boolean(config, "options", "scroll_on_output")) {
|
};
|
||||||
vte_terminal_set_scroll_on_output(vte, *b);
|
|
||||||
}
|
gtk_window_set_has_resize_grip(window, get_bool_or("resize_grip", FALSE));
|
||||||
if (auto b = get_config_boolean(config, "options", "scroll_on_keystroke")) {
|
vte_terminal_set_scroll_on_output(vte, get_bool_or("scroll_on_output", FALSE));
|
||||||
vte_terminal_set_scroll_on_keystroke(vte, *b);
|
vte_terminal_set_scroll_on_keystroke(vte, get_bool_or("scroll_on_keystroke", TRUE));
|
||||||
}
|
vte_terminal_set_audible_bell(vte, get_bool_or("audible_bell", FALSE));
|
||||||
if (auto b = get_config_boolean(config, "options", "audible_bell")) {
|
vte_terminal_set_visible_bell(vte, get_bool_or("audible_bell", FALSE));
|
||||||
vte_terminal_set_audible_bell(vte, *b);
|
vte_terminal_set_mouse_autohide(vte, get_bool_or("mouse_autohide", FALSE));
|
||||||
}
|
vte_terminal_set_allow_bold(vte, get_bool_or("allow_bold", TRUE));
|
||||||
if (auto b = get_config_boolean(config, "options", "visible_bell")) {
|
vte_terminal_search_set_wrap_around(vte, get_bool_or("search_wrap", TRUE));
|
||||||
vte_terminal_set_visible_bell(vte, *b);
|
|
||||||
}
|
|
||||||
if (auto b = get_config_boolean(config, "options", "mouse_autohide")) {
|
|
||||||
vte_terminal_set_mouse_autohide(vte, *b);
|
|
||||||
}
|
|
||||||
if (auto b = get_config_boolean(config, "options", "allow_bold")) {
|
|
||||||
vte_terminal_set_allow_bold(vte, *b);
|
|
||||||
}
|
|
||||||
if (auto b = get_config_boolean(config, "options", "dynamic_title")) {
|
if (auto b = get_config_boolean(config, "options", "dynamic_title")) {
|
||||||
info->dynamic_title = *b;
|
info->dynamic_title = *b;
|
||||||
}
|
}
|
||||||
if (auto b = get_config_boolean(config, "options", "urgent_on_bell")) {
|
if (auto b = get_config_boolean(config, "options", "urgent_on_bell")) {
|
||||||
info->urgent_on_bell = *b;
|
info->urgent_on_bell = *b;
|
||||||
}
|
}
|
||||||
if (auto b = get_config_boolean(config, "options", "search_wrap")) {
|
|
||||||
vte_terminal_search_set_wrap_around(vte, *b);
|
|
||||||
}
|
|
||||||
if (auto b = get_config_boolean(config, "options", "clickable_url")) {
|
if (auto b = get_config_boolean(config, "options", "clickable_url")) {
|
||||||
info->clickable_url = *b;
|
info->clickable_url = *b;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue