config: change default ‘pad’ to 0x0 (i.e. no padding)

This commit is contained in:
Daniel Eklöf 2022-09-03 12:16:41 +02:00
parent 473c5f4e76
commit 2d1ded183a
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
4 changed files with 5 additions and 4 deletions

View file

@ -54,6 +54,7 @@
* Default color theme from a variant of the Zenburn theme, to a
variant of the Solarized dark theme.
* Default `pad` from 2x2 to 0x0 (i.e. no padding at all).
### Deprecated

View file

@ -2821,8 +2821,8 @@ config_load(struct config *conf, const char *conf_path,
.width = 700,
.height = 500,
},
.pad_x = 2,
.pad_y = 2,
.pad_x = 0,
.pad_y = 0,
.resize_delay_ms = 100,
.bold_in_bright = {
.enabled = false,

View file

@ -210,7 +210,7 @@ commented out will usually be installed to */etc/xdg/foot/foot.ini*.
To instead center the grid content, append *center* (e.g. *pad=5x5
center*).
Default: _2x2_.
Default: _0x0_.
*resize-delay-ms*
Time, in milliseconds, of "idle time" before foot sends the new

View file

@ -24,7 +24,7 @@
# initial-window-size-pixels=700x500 # Or,
# initial-window-size-chars=<COLSxROWS>
# initial-window-mode=windowed
# pad=2x2 # optionally append 'center'
# pad=0x0 # optionally append 'center'
# resize-delay-ms=100
# notify=notify-send -a ${app-id} -i ${app-id} ${title} ${body}