Skip to content

Instantly share code, notes, and snippets.

View Miltonr87's full-sized avatar
🇧🇷

Milton Rodrigues Miltonr87

🇧🇷
View GitHub Profile
@Miltonr87
Miltonr87 / postman-deb.sh
Created July 9, 2021 02:36 — forked from SanderTheDragon/postman-deb.sh
A shellscript to create a Postman .deb file, for simple installation on Debian-based Linux distro's. Also creates a .desktop file.
#!/bin/sh
ls Postman*.tar.gz > /dev/null 2>&1
if [ $? -eq 0 ]; then
echo "Removing old Postman tarballs"
rm -f $(ls Postman*.tar.gz)
fi
curlExists=$(command -v curl)
@Miltonr87
Miltonr87 / install-firacode.sh
Created March 18, 2021 17:29 — forked from nikhita/install-firacode.sh
How to install FiraCode font on Linux
mkdir -p ~/.local/share/fonts
for type in Bold Light Medium Regular Retina; do wget -O ~/.local/share/fonts/FiraCode-$type.ttf "https://github.com/tonsky/FiraCode/blob/master/distr/ttf/FiraCode-$type.ttf?raw=true"; done
fc-cache -f