Skip to content

Instantly share code, notes, and snippets.

View RyuzakiiL23's full-sized avatar
💭
I may be slow to respond.

Omar EL HAMRANi RyuzakiiL23

💭
I may be slow to respond.
View GitHub Profile
@incogbyte
incogbyte / fonts.sh
Created February 18, 2022 16:45
Install Meslo Fonts Ubuntu Linux Mint and debians
#!/bin/bash
sudo apt install fontconfig
cd ~
wget https://github.com/ryanoasis/nerd-fonts/releases/download/v2.1.0/Meslo.zip
mkdir -p .local/share/fonts
unzip Meslo.zip -d .local/share/fonts
cd .local/share/fonts
rm *Windows*
cd ~