This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Written by: Keefer Rourke <https://krourke.org> | |
# Based on AUR package <https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=ttf-google-fonts-git> | |
# dependancies: fonts-cantarell, ttf-ubuntu-font-family, git | |
sudo apt-get install fonts-cantarell, ttf-ubuntu-font-family, git | |
srcdir="/tmp/google-fonts" | |
pkgdir="/usr/local/share/fonts" | |
giturl="git://github.com/google/fonts.git" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh -e | |
# "-e" exists on first error. | |
#Check if user is root | |
if ! [ $(id -u) = 0 ]; then | |
echo "You need to be root or have sudo privileges!" | |
exit 1 | |
fi | |
apt -yq2 install libpng-dev \ | |
libfreetype6 \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
apt install \ | |
build-essential \ | |
cdbs \ | |
cmake \ | |
debhelper \ | |
libasound2-dev \ | |
libavcodec-ffmpeg56 \ | |
libavdevice-dev \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Basic bash desktop file crawler | |
# 2019 - Luis Guzman <[email protected]> | |
##Check superuser | |
#if ! [ $(id -u) = 0 ]; then | |
# echo "You need to be root or have sudo privileges!" | |
# exit 0 | |
#fi |
OlderNewer