2

I have installed google noto fonts in /usr/share/fonts/opentype/noto .and execute the command:

fc-cache -fv

1.How to know which type of fonts is being used in my debian8.1?
2.How to set google noto fonts to be used in my debian8.1?How to set the configuration file /etc/fonts/fonts.conf ?

enter image description here

showkey
  • 79
  • 23
  • 67
  • 128

2 Answers2

5

To know what default fonts are being used on your system, run the commands

$ fc-match sans-serif
$ fc-match serif
$ fc-match monospace

They should give you the system default sans-serif, serif and monospace fonts respectively.

To set the system defaults to Google's Noto fonts, you need to edit the fontconfig configuration files. For details see the fontconfig documentation. For a readymade config file, see this repo.

1

From Set system font in LXDE?:

The "Default font" combo is (mis)placed in the "Widget" tab. I really don't understand why they didn't put it in the "Font" tab.

Jodka Lemon
  • 3,143
  • 13
  • 42
  • Well, the OP never asked for LXDE-specific instructions. The OP wanted to change the *system default* serif, sans and mono fonts. Changing LXDE settings will not affect font selection in other applications such as Firefox, Evolution etc. –  Dec 22 '17 at 10:55