mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-14 05:33:59 -04:00
config: add 'show-scrollback-position' option to footrc
This commit is contained in:
parent
b1950ac222
commit
2c6f7adc17
4 changed files with 9 additions and 2 deletions
4
config.c
4
config.c
|
|
@ -291,6 +291,9 @@ parse_section_main(const char *key, const char *value, struct config *conf,
|
|||
conf->scrollback_lines = lines;
|
||||
}
|
||||
|
||||
else if (strcmp(key, "show-scrollback-position") == 0)
|
||||
conf->show_scrollback_position = str_to_bool(value);
|
||||
|
||||
else {
|
||||
LOG_ERR("%s:%u: invalid key: %s", path, lineno, key);
|
||||
return false;
|
||||
|
|
@ -918,6 +921,7 @@ config_load(struct config *conf, const char *conf_path)
|
|||
.startup_mode = STARTUP_WINDOWED,
|
||||
.fonts = tll_init(),
|
||||
.scrollback_lines = 1000,
|
||||
.show_scrollback_position = true,
|
||||
|
||||
.colors = {
|
||||
.fg = default_foreground,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue