78760b3c52
This is iconic font used by i3 window manager components (like i3bar etc). Version 4 is recommended over newer 5. Signed-off-by: Michal Cieslakiewicz <michal.cieslakiewicz@wp.pl>
15 lines
257 B
Bash
15 lines
257 B
Bash
# Update the X font indexes:
|
|
if [ -x /usr/bin/mkfontdir ]; then
|
|
( cd usr/share/fonts/TTF
|
|
mkfontscale .
|
|
mkfontdir .
|
|
)
|
|
( cd usr/share/fonts/OTF
|
|
mkfontscale .
|
|
mkfontdir .
|
|
)
|
|
fi
|
|
if [ -x /usr/bin/fc-cache ]; then
|
|
/usr/bin/fc-cache -f
|
|
fi
|