Skip to content

Instantly share code, notes, and snippets.

@fullmetalbrackets
Last active December 6, 2021 03:16
Show Gist options
  • Save fullmetalbrackets/5a094e7daef47dd63074259143466442 to your computer and use it in GitHub Desktop.
Save fullmetalbrackets/5a094e7daef47dd63074259143466442 to your computer and use it in GitHub Desktop.
Download powerlevel10k preferred fonts directly into fonts folder
#!/bin/sh
# Stupidly simple script to download Powerlevel10k's recommended fonts from their own repo and directly into the Linux fonts directory
# Because for some reason Powerlevel10k doesn't include it on it's install script...
wget -O /usr/share/fonts/MesloLGS%20NF%20Regular.ttf https://github.com/romkatv/powerlevel10k-media/raw/master/MesloLGS%20NF%20Regular.ttf
wget -O /usr/share/fonts/MesloLGS%20NF%20Bold.ttf https://github.com/romkatv/powerlevel10k-media/raw/master/MesloLGS%20NF%20Bold.ttf
wget -O /usr/share/fonts/MesloLGS%20NF%20Italic.ttf https://github.com/romkatv/powerlevel10k-media/raw/master/MesloLGS%20NF%20Italic.ttf
wget -O /usr/share/fonts/MesloLGS%20NF%20Bold%20Italic.ttf https://github.com/romkatv/powerlevel10k-media/raw/master/MesloLGS%20NF%20Bold%20Italic.ttf
echo "All done!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment