Skip to content

Instantly share code, notes, and snippets.

View Domkeykong's full-sized avatar

Chris Domkeykong

View GitHub Profile
@Domkeykong
Domkeykong / install_pacaur.sh
Last active July 20, 2018 13:15 — forked from tadly/pacaur_install.sh
A simple shell script to quickly / easily install "pacaur" on archlinux
#!/bin/sh
# If you are new to arch, I encourage you to at least read and understand what
# this script does befor blindley running it.
# That's why I didn't make a one-liner out of it so you have an easier time
# reading and understanding it :)
#
# This scripts purpose is purly to save you a few seconds on your new installation.
#
# Enjoy your time on an awesome system. Arch FTW!
@Domkeykong
Domkeykong / install-node-pi.sh
Last active January 31, 2018 12:24 — forked from HendrikRoth/install-node-pi.sh
Install Node JS in 30 seconds for Raspberry Pi / ARM
#!/bin/bash
## Check for versions compiled with ARM at http://nodejs.org/dist/
## Inspired by http://oskarhane.com/raspberry-pi-install-node-js-and-npm/
## Fill in the Node Version here:
##########################################################################
NODE_VERSION="v8.9.4"
HOST_VERSION="armv7l"