Skip to content

Instantly share code, notes, and snippets.

View koesherbacon's full-sized avatar

Ev koesherbacon

View GitHub Profile
@koesherbacon
koesherbacon / post_install.sh
Created February 10, 2016 00:45 — forked from gustafnk/post_install.sh
Post install for Manjaro XFCE Edition
####################################################
# Post install for Manjaro XFCE Edition
# Do not run this as a shell script
####################################################
## Install essentials
sudo pacman -S vim git curl
git config --global core.editor "vim"
## Install rvm (ruby)
@koesherbacon
koesherbacon / manjaro-install.sh
Created February 10, 2016 00:43 — forked from gabrielmoreira/manjaro-install.sh
Manjaro Install script
# Prepare pacman
sudo mkdir -p /root/.gnupg
sudo pacman-key --init && sudo pacman-key --populate archlinux manjaro && sudo pacman-key --refresh-keys
# Remove packages
sudo pacman -R empathy accerciser gnome-chess gnome-sudoku gnome-tetravex polari five-or-more four-in-a-row steam-native ipython hitori gnome-klotski steam quadrapassel gnome-nibbles aisleriot lightsoff gnome-mahjongg gnome-mines iagno gnome-robots tali swell-foop
# Upgrade all
sudo pacman -Syyu
@koesherbacon
koesherbacon / debian-sid_main.list
Created January 19, 2016 18:52 — forked from Roboe/debian-sid_main.list
A collection of /etc/apt/sources.list (Spanish endpoints)
deb http://ftp.es.debian.org/debian/ unstable main
#deb-src http://ftp.es.debian.org/debian/ unstable main
#!/usr/bin/env sh
# Download lists, unpack and filter, write to stdout
curl -s https://www.iblocklist.com/lists.php \
| sed -n "s/.*value='\(http:.*=bt_.*\)'.*/\1/p" \
| xargs wget -O - \
| gunzip \
| egrep -v '^#'
#!/usr/bin/env sh
# Download lists, unpack and filter, write to stdout
curl -s https://www.iblocklist.com/lists.php \
| sed -n "s/.*value='\(http:.*=bt_.*\)'.*/\1/p" \
| xargs wget -O - \
| gunzip \
| egrep -v '^#'