Skip to content

Instantly share code, notes, and snippets.

View Ark74's full-sized avatar

Luis Guzman Ark74

View GitHub Profile
@Ark74
Ark74 / install-google-fonts.sh
Last active October 10, 2018 18:27 — forked from keeferrourke/install-google-fonts.sh
A bash script to install all Google Fonts, system wide, on debian based systems (ex. Ubuntu)
#!/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"
@Ark74
Ark74 / setup_trisquel8.sh
Created November 17, 2018 04:08
Backport installer to python3 (Trisquel 8)
#!/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 \
@Ark74
Ark74 / obs-acc-free.sh
Created December 20, 2018 21:13
Trisquel compliant obs-studio rebuild
#!/bin/bash
apt install \
build-essential \
cdbs \
cmake \
debhelper \
libasound2-dev \
libavcodec-ffmpeg56 \
libavdevice-dev \
#!/bin/bash
# Basic bash desktop file crawler
# 2019 - Luis Guzman <ark@switnet.org>
##Check superuser
#if ! [ $(id -u) = 0 ]; then
# echo "You need to be root or have sudo privileges!"
# exit 0
#fi