Skip to content

Instantly share code, notes, and snippets.

@salif
Created June 15, 2021 15:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save salif/54b403539ab74faa9f37929cc1db5ac6 to your computer and use it in GitHub Desktop.
Save salif/54b403539ab74faa9f37929cc1db5ac6 to your computer and use it in GitHub Desktop.
Calibre | Replace Liberation font with different font on Arch Linux

Remove ttf-liberation

sudo -i
pacman -Rdd ttf-liberation
rm /usr/share/calibre/fonts/liberation/Liberation*.ttf

Option 1: noto-fonts

pacman -S noto-fonts
ln -s /usr/share/fonts/noto/NotoSerif-Regular.ttf /usr/share/calibre/fonts/liberation/LiberationSerif-Regular.ttf
ln -s /usr/share/fonts/noto/NotoSerif-Italic.ttf /usr/share/calibre/fonts/liberation/LiberationSerif-Italic.ttf
ln -s /usr/share/fonts/noto/NotoSerif-BoldItalic.ttf /usr/share/calibre/fonts/liberation/LiberationSerif-BoldItalic.ttf
ln -s /usr/share/fonts/noto/NotoSerif-Bold.ttf /usr/share/calibre/fonts/liberation/LiberationSerif-Bold.ttf
ln -s /usr/share/fonts/noto/NotoSans-Regular.ttf /usr/share/calibre/fonts/liberation/LiberationSans-Regular.ttf
ln -s /usr/share/fonts/noto/NotoSans-Italic.ttf /usr/share/calibre/fonts/liberation/LiberationSans-Italic.ttf
ln -s /usr/share/fonts/noto/NotoSans-BoldItalic.ttf /usr/share/calibre/fonts/liberation/LiberationSans-BoldItalic.ttf
ln -s /usr/share/fonts/noto/NotoSans-Bold.ttf /usr/share/calibre/fonts/liberation/LiberationSans-Bold.ttf
ln -s /usr/share/fonts/noto/NotoSansMono-Regular.ttf /usr/share/calibre/fonts/liberation/LiberationMono-Regular.ttf
ln -s /usr/share/fonts/noto/NotoSansMono-Thin.ttf /usr/share/calibre/fonts/liberation/LiberationMono-Italic.ttf
ln -s /usr/share/fonts/noto/NotoSansMono-Light.ttf /usr/share/calibre/fonts/liberation/LiberationMono-BoldItalic.ttf
ln -s /usr/share/fonts/noto/NotoSansMono-Bold.ttf /usr/share/calibre/fonts/liberation/LiberationMono-Bold.ttf

Option 2: gnu-free-fonts

pacman -S gnu-free-fonts
ln -s /usr/share/fonts/gnu-free/FreeMonoBoldOblique.otf /usr/share/calibre/fonts/liberation/LiberationMono-BoldItalic.ttf
ln -s /usr/share/fonts/gnu-free/FreeMonoBold.otf /usr/share/calibre/fonts/liberation/LiberationMono-Bold.ttf
ln -s /usr/share/fonts/gnu-free/FreeMonoOblique.otf /usr/share/calibre/fonts/liberation/LiberationMono-Italic.ttf
ln -s /usr/share/fonts/gnu-free/FreeMono.otf /usr/share/calibre/fonts/liberation/LiberationMono-Regular.ttf
ln -s /usr/share/fonts/gnu-free/FreeSansBoldOblique.otf /usr/share/calibre/fonts/liberation/LiberationSans-BoldItalic.ttf
ln -s /usr/share/fonts/gnu-free/FreeSansBold.otf /usr/share/calibre/fonts/liberation/LiberationSans-Bold.ttf
ln -s /usr/share/fonts/gnu-free/FreeSansOblique.otf /usr/share/calibre/fonts/liberation/LiberationSans-Italic.ttf
ln -s /usr/share/fonts/gnu-free/FreeSans.otf /usr/share/calibre/fonts/liberation/LiberationSans-Regular.ttf
ln -s /usr/share/fonts/gnu-free/FreeSerifBoldItalic.otf /usr/share/calibre/fonts/liberation/LiberationSerif-BoldItalic.ttf
ln -s /usr/share/fonts/gnu-free/FreeSerifBold.otf /usr/share/calibre/fonts/liberation/LiberationSerif-Bold.ttf
ln -s /usr/share/fonts/gnu-free/FreeSerifItalic.otf /usr/share/calibre/fonts/liberation/LiberationSerif-Italic.ttf
ln -s /usr/share/fonts/gnu-free/FreeSerif.otf /usr/share/calibre/fonts/liberation/LiberationSerif-Regular.ttf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment