-
-
Save webdevsuperfast/2bdafd6dff376b4e67fb64d9e16b6035 to your computer and use it in GitHub Desktop.
Install recursive mono font on Fedora
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 dnf install -y wget p7zip curl | |
[[ ! -d ~/.fonts ]] && mkdir -p ~/.fonts | |
wget "$(curl "https://www.recursive.design" | grep -o 'https://github.com/.*.zip' | head -n1)" -O /tmp/recursive-fonts.zip | |
( cd ~/.fonts ; 7za 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