Last active
October 22, 2022 05:18
-
-
Save xanderificnl/61fdd894920dbcd45e1bfeaa43a87052 to your computer and use it in GitHub Desktop.
Install recursive mono font (quick 'n dirty)
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/sh | |
sudo apt install -y wget p7zip-full curl | |
mkdir -p ~/.fonts | |
wget "$(curl "https://www.recursive.design" | grep -o 'https://github.com/.*.zip' | head -n1)" -O /tmp/recursive-fonts.zip | |
( cd ~/.fonts ; 7z e -y -r -i\!*.ttf /tmp/recursive-fonts.zip ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment