Skip to content

Instantly share code, notes, and snippets.

@xanderificnl
Last active October 22, 2022 05:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save xanderificnl/61fdd894920dbcd45e1bfeaa43a87052 to your computer and use it in GitHub Desktop.
Save xanderificnl/61fdd894920dbcd45e1bfeaa43a87052 to your computer and use it in GitHub Desktop.
Install recursive mono font (quick 'n dirty)
#!/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