Outils pour utilisateurs

Outils du site


tech:police_de_caracteres_-_fonts

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentesRévision précédente
Prochaine révision
Révision précédente
tech:police_de_caracteres_-_fonts [2025/09/11 11:30] Jean-Baptistetech:police_de_caracteres_-_fonts [2026/05/29 14:36] (Version actuelle) Jean-Baptiste
Ligne 1: Ligne 1:
 +<!DOCTYPE markdown>
 +{{tag>Brouillon}}
 +
 +# Police de caractères - fonts
 +
 +Voir :
 +* https://linuxfr.org/news/ysabeau-un-chouette-caractere
 +* https://opensource.com/article/23/4/linux-terminal-fonts
 +
 +
 +Polices de caractères :
 +* [IBM Plex](https://fr.wikipedia.org/wiki/IBM_Plex)
 +* [Helvetica](https://fr.wikipedia.org/wiki/Helvetica)
 +* Google Noto
 +* Lohit
 +* tex-gyre
 +
 +FIXME
 +
 +
 +Voir https://bits.debian.org/2021/12/2000-fonts-debian.html
 +~~~bash
 +ITP #973779 fnt install scheherazadenew
 +RFP #944140 fnt install arsenal
 +RFP #757249 fnt install ekmukta
 +RFP #724629 fnt install firasans
 +RFP #766211 fnt install orbitron
 +RFP #803690 fnt install pompiere
 +RFP #754784 fnt install raleway
 +RFP #827735 fnt install reemkufi
 +RFP #986999 fnt install redhat{display,mono,text} 
 +~~~
 +
 +--------------
 +
 +~~~bash
 +sudo fc-match "Noto Color Emoji"
 +
 +sudo apt-get install fonts-noto-color-emoji
 +
 +# copy config from this gist your profile config directory
 +cp 10-emoji.conf $XDG_CONFIG_HOME/fontconfig/conf.d/10-emoji.conf
 +
 +# regenerate font cache
 +fc-cache -f -v
 +~~~
 +
 +Open this url in your browser \\
 +https://eosrei.github.io/emojione-color-font/full-demo.html
 +
 +
 +`~/.config/fontconfig/conf.d/01-emoji.conf`
 +
 +https://gist.github.com/probil/36dd02d6c9d8446f027aaafb1728a0f3#file-10-emoji-conf
 + ~/.config/fontconfig/conf.d/99-emoji.conf (you will probably need to create the folders!) and add this:
 +
 +~~~xml
 +<?xml version="1.0" encoding="UTF-8"?>
 +<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
 +<fontconfig>
 +  <match>
 +    <test name="family"><string>sans-serif</string></test>
 +    <edit name="family" mode="append" binding="strong">
 +      <string>Bitstream Vera Serif</string>
 +      <string>Noto Color Emoji</string>
 +    </edit>
 +  </match>
 +
 +  <!-- Add emoji generic family -->
 +  <alias binding="strong">
 +    <family>emoji</family>
 +    <default><family>Noto Color Emoji</family></default>
 +  </alias>
 +
 +  <!-- Aliases for the other emoji fonts -->
 +  <alias binding="strong">
 +    <family>Apple Color Emoji</family>
 +    <prefer><family>Noto Color Emoji</family></prefer>
 +  </alias>
 +  <alias binding="strong">
 +    <family>Segoe UI Emoji</family>
 +    <prefer><family>Noto Color Emoji</family></prefer>
 +  </alias>
 +  <alias binding="strong">
 +    <family>Emoji One</family>
 +    <prefer><family>Noto Color Emoji</family></prefer>
 +  </alias>
 +</fontconfig>
 +~~~
 +
 +~~~bash
 +cp /usr/share/fonts/truetype/noto/NotoColorEmoji.ttf /usr/local/share/fonts/
 +chmod 644 /usr/local/share/fonts/NotoColorEmoji.ttf
 +~~~
 +
 +clear font cache
 +~~~bash
 +fc-cache -fv
 +~~~
 +
 +
 +Autres - setfont
 +
 +Source : https://tookmund.com/2024/01/fixing-my-shell
 +
 +~~~bash
 +if [ -t 1 ]
 +then
 + setfont /usr/share/consolefonts/Lat15-Terminus20x10.psf.gz
 +fi
 +~~~
 +
 +~~~bash
 +dpkg-reconfigure console-setup
 +~~~
 +
 +~~~bash
 +fc-cache ~/.fonts/
 +~~~
 +
 +~~~bash
 +chkfontpath --add /usr/share/fonts/local/
 +~~~
 +
 +~~~bash
 +ttmkfdir -d /usr/share/fonts/local/ -o /usr/share/fonts/local/fonts.scale
 +~~~
 +
 +Method to add fonts is as follows:
 +  * Double-click on the "Computer" icon on your desktop.
 +  * In the "File" menu, choose "Open Location..."
 +  * Type in: fonts://
 +  * When the fonts window appears, drag and drop the fonts to be installed into this window. 
 +  
 +The new fonts you install should be usable by most GNOME applications. Some applications may have to be restarted to use the newly added fonts.
 +
 +Source : https://docs.redhat.com/en/documentation/Red_Hat_Enterprise_Linux/5/html-single/international_language_support_guide/index
 +
 +
 +## Fonts libres 
 +
 +* https://en.wikipedia.org/wiki/Cantarell_(typeface)
 +
  

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki