mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-18 05:34:02 -04:00
config: change default geometry from 800x600 -> 700x500
If the display resolution *is* 800x600, using this size is bad since there will typically be panels and other things on the screen too. Not that 800x600 is something we expect to see in real life, but may happen on virtual displays.
This commit is contained in:
parent
e01030f99f
commit
5717a0dfb0
3 changed files with 4 additions and 4 deletions
4
config.c
4
config.c
|
|
@ -491,8 +491,8 @@ config_load(struct config *conf, const char *conf_path)
|
|||
*conf = (struct config) {
|
||||
.term = strdup("foot"),
|
||||
.shell = get_shell(),
|
||||
.width = 800,
|
||||
.height = 600,
|
||||
.width = 700,
|
||||
.height = 500,
|
||||
.pad_x = 2,
|
||||
.pad_y = 2,
|
||||
.fonts = tll_init(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue