mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-27 07:58:07 -04:00
config: change default ‘pad’ to 0x0 (i.e. no padding)
This commit is contained in:
parent
473c5f4e76
commit
2d1ded183a
4 changed files with 5 additions and 4 deletions
|
|
@ -54,6 +54,7 @@
|
||||||
|
|
||||||
* Default color theme from a variant of the Zenburn theme, to a
|
* Default color theme from a variant of the Zenburn theme, to a
|
||||||
variant of the Solarized dark theme.
|
variant of the Solarized dark theme.
|
||||||
|
* Default `pad` from 2x2 to 0x0 (i.e. no padding at all).
|
||||||
|
|
||||||
|
|
||||||
### Deprecated
|
### Deprecated
|
||||||
|
|
|
||||||
4
config.c
4
config.c
|
|
@ -2821,8 +2821,8 @@ config_load(struct config *conf, const char *conf_path,
|
||||||
.width = 700,
|
.width = 700,
|
||||||
.height = 500,
|
.height = 500,
|
||||||
},
|
},
|
||||||
.pad_x = 2,
|
.pad_x = 0,
|
||||||
.pad_y = 2,
|
.pad_y = 0,
|
||||||
.resize_delay_ms = 100,
|
.resize_delay_ms = 100,
|
||||||
.bold_in_bright = {
|
.bold_in_bright = {
|
||||||
.enabled = false,
|
.enabled = false,
|
||||||
|
|
|
||||||
|
|
@ -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
|
To instead center the grid content, append *center* (e.g. *pad=5x5
|
||||||
center*).
|
center*).
|
||||||
|
|
||||||
Default: _2x2_.
|
Default: _0x0_.
|
||||||
|
|
||||||
*resize-delay-ms*
|
*resize-delay-ms*
|
||||||
Time, in milliseconds, of "idle time" before foot sends the new
|
Time, in milliseconds, of "idle time" before foot sends the new
|
||||||
|
|
|
||||||
2
foot.ini
2
foot.ini
|
|
@ -24,7 +24,7 @@
|
||||||
# initial-window-size-pixels=700x500 # Or,
|
# initial-window-size-pixels=700x500 # Or,
|
||||||
# initial-window-size-chars=<COLSxROWS>
|
# initial-window-size-chars=<COLSxROWS>
|
||||||
# initial-window-mode=windowed
|
# initial-window-mode=windowed
|
||||||
# pad=2x2 # optionally append 'center'
|
# pad=0x0 # optionally append 'center'
|
||||||
# resize-delay-ms=100
|
# resize-delay-ms=100
|
||||||
|
|
||||||
# notify=notify-send -a ${app-id} -i ${app-id} ${title} ${body}
|
# notify=notify-send -a ${app-id} -i ${app-id} ${title} ${body}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue