config: add ‘dpi-aware’ option, defaulting to enabled

When disabled, foot no longers uses outputs’ DPI to scale the
font. Instead, it uses the outputs’ scaling factor.

That is, instead of appending “:dpi=123” to the fontconfig string,
modify the “:pixelsize” or “:size” attribute.

Closes #206
This commit is contained in:
Daniel Eklöf 2020-11-17 17:59:31 +01:00
parent 587fce68fa
commit 8e7658a135
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
7 changed files with 87 additions and 11 deletions

View file

@ -227,6 +227,7 @@ struct terminal {
struct fcft_font *fonts[4];
struct config_font *font_sizes[4];
float font_dpi;
int font_scale;
enum fcft_subpixel font_subpixel;
bool is_sending_paste_data;