Skip to content

Instantly share code, notes, and snippets.

@webdevsuperfast
Forked from xanderificnl/run.sh
Last active October 22, 2022 05:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save webdevsuperfast/2bdafd6dff376b4e67fb64d9e16b6035 to your computer and use it in GitHub Desktop.
Save webdevsuperfast/2bdafd6dff376b4e67fb64d9e16b6035 to your computer and use it in GitHub Desktop.
Install recursive mono font on Fedora
#!/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