Skip to content

Instantly share code, notes, and snippets.

View koesherbacon's full-sized avatar

Ev koesherbacon

View GitHub Profile
@Roboe
Roboe / debian-sid_main.list
Created July 5, 2015 11:18
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
@gabrielmoreira
gabrielmoreira / manjaro-install.sh
Last active May 2, 2023 18:16
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
@gustafnk
gustafnk / post_install.sh
Last active October 19, 2020 01:59
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)
@opnchaudhary
opnchaudhary / fedora-post-installation.sh
Last active September 12, 2016 12:38
fedora post installation script
#!/bin/sh
#Install RPMFusion, free and non-free repository
yum localinstall --nogpgcheck http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm -y
#Configure yum : disable gpg checking, enable caching, keep metadata for 9 days
#vi /etc/yum.conf
#If the wireless device is not supported out of the box, and if it is a Broadcom WLAN device
#yum install kmod-wl -y
@johntyree
johntyree / getBlockLists.sh
Last active March 9, 2024 12:32
Make one large blocklist from the bluetack lists on iblocklist.com
#!/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 '^#'