-
I want to use Inter as my system font (on Windows and GNU/Linux), but I don't know how to toggle features. Should I build the font on my own, or change my system settings? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
AFAIK opentype features can't be changed on windows and linux for UI fonts. You could try a program such as this https://github.com/twardoch/fonttools-opentype-feature-freezer which lets you select the features you want, then create font files for it. |
Beta Was this translation helpful? Give feedback.
-
Just don't use the variable font version. I use Inter Light (static version) on Linux and it works perfectly |
Beta Was this translation helpful? Give feedback.
-
On Linux, it's possible to create a fontconfig file which will configure features in many apps. For example, I'm using this config file on one of my systems to set some defaults when using Inter as UI font: (Install this to <?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<match target="font">
<test qual="any" name="family"><string>Inter</string></test>
<!-- These are set with "prepend" so that applications which configure features don't get overridden -->
<edit name="fontfeatures" mode="prepend">
<string>tnum</string><!-- Tabular numbers -->
<string>ss03</string><!-- Curved r -->
<string>ss04</string><!-- Disambiguation w/o zero -->
<string>calt off</string><!-- Contextural alternatives -->
</edit>
</match>
</fontconfig> A notable application which will not follow this configuration is Firefox - it seems to have native Opentype feature support, and ignores the feature settings that fontconfig suggests. |
Beta Was this translation helpful? Give feedback.
AFAIK opentype features can't be changed on windows and linux for UI fonts. You could try a program such as this https://github.com/twardoch/fonttools-opentype-feature-freezer which lets you select the features you want, then create font files for it.