Last active
June 5, 2025 17:53
-
Star
(169)
You must be signed in to star a gist -
Fork
(61)
You must be signed in to fork a gist
-
-
Save rogerleite/99819 to your computer and use it in GitHub Desktop.
Install Monaco font in Linux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Install Monaco font in Linux | |
# Version from nullvideo https://gist.github.com/rogerleite/99819#gistcomment-2799386 | |
sudo mkdir -p /usr/share/fonts/truetype/ttf-monaco && \ | |
sudo wget https://gist.github.com/rogerleite/b50866eb7f7b5950da01ae8927c5bd61/raw/862b6c9437f534d5899e4e68d60f9bf22f356312/mfont.ttf -O - > \ | |
/usr/share/fonts/truetype/ttf-monaco/Monaco_Linux.ttf && \ | |
sudo fc-cache |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks!!!
It works on Ubuntu 24.04