document term setting
This commit is contained in:
parent
6797050b75
commit
596672e5ee
|
@ -274,10 +274,9 @@ static void load_config(GtkWindow *window, VteTerminal *vte, bool first_run,
|
||||||
gint cfgint;
|
gint cfgint;
|
||||||
gchar *cfgstr;
|
gchar *cfgstr;
|
||||||
|
|
||||||
if (first_run && get_config_string(config, "terminal", "term", &cfgstr)) {
|
if (first_run && get_config_string(config, "options", "term", &cfgstr)) {
|
||||||
*term = cfgstr;
|
*term = cfgstr;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (get_config_boolean(config, "options", "resize_grip", &cfgbool)) {
|
if (get_config_boolean(config, "options", "resize_grip", &cfgbool)) {
|
||||||
gtk_window_set_has_resize_grip(window, cfgbool);
|
gtk_window_set_has_resize_grip(window, cfgbool);
|
||||||
}
|
}
|
||||||
|
|
|
@ -25,6 +25,10 @@ cursor_shape = BLOCK
|
||||||
# $BROWSER is used by default
|
# $BROWSER is used by default
|
||||||
#browser = /usr/bin/firefox
|
#browser = /usr/bin/firefox
|
||||||
|
|
||||||
|
# vte-256color has the correct terminfo, but some applications (vim, weechat)
|
||||||
|
# still need patches for mouse/title support
|
||||||
|
#term = vte-256color
|
||||||
|
|
||||||
[colors]
|
[colors]
|
||||||
foreground = #dcdccc
|
foreground = #dcdccc
|
||||||
background = #3f3f3f
|
background = #3f3f3f
|
||||||
|
|
Loading…
Reference in New Issue