Archive
fonts for programming
See https://github.com/powerline/fonts. It also has an installer script. The font Hack works very well for me.
[manjaro] install new fonts
Problem
Under Manjaro I wanted to install new fonts. I needed a font pack; I didn’t want to bother with individual fonts.
Solution
At https://wiki.archlinux.org/index.php/fonts#TrueType I found some packages:
- ttf-ms-fonts
- ttf-google-fonts-git
- ttf-bitstream-vera
- ttf-vista-fonts
- ttf-hack
The Google font kit contains hundreds of fonts.
Gimp
If you type a text in Gimp and you want to see the text with different fonts, i.e. you want to browse the fonts, here is how to do it.
Move the mouse above the font selector button (between “Font:” and “Sans” on the screenshot) and use the mouse wheel. That’s the trick.
[manjaro] install a new TTF font
Problem
I found a nice TTF font at https://github.com/chrissimpkins/Hack (reddit discussion here). How to install it?
Solution
Download the .ttf version and copy them to the /usr/share/fonts/TTF
folder. Then update the font cache:
root$ fc-cache && mkfontscale && mkfontdir
I wanted to try it in Yakuake but first I had to restart Yakuake. Then this font appeared in the font list.
Other nice fonts for coding IMO: Consolas.
installing new fonts
Problem
You have a new font that you want to install system-wide. For instance, you copy some *.ttf
fonts from a Windows machine (from C:\Windows\Fonts\
) and you want to use them.
Solution
Install font-manager
:
sudo apt-get install font-manager
With this software you can also browse your fonts. To install a new font, click on the Manage fonts icon in the bottom left corner next to the Save icon.
Tip from here.