Skip to content

Instantly share code, notes, and snippets.

View nphyx's full-sized avatar

Justen Robertson nphyx

View GitHub Profile
@nphyx
nphyx / terminalrc
Last active July 30, 2017 12:49 — forked from jlhg/terminalrc
Zenburn colours scheme for Xfce Terminalhttp://slinky.imukuppi.org/zenburnpage/
# Zenburn colours scheme for Xfce Terminal updated for Xfce4-terminal 0.6.3. Copy and paste the following in ${HOME}/.config/xfce4/Terminal/terminalrc:
ColorBackground=#404040
ColorForeground=#F6F3E8
ColorCursor=#8f8fafaf9f9f
ColorPalette=#3f3f3f3f3f3f;#e8e893939393;#9e9ecece9e9e;#f0f0dfdfafaf;#8c8cd0d0d3d3;#c0c0bebed1d1;#dfdfafaf8f8f;#efefefefefef;#3f3f3f3f3f3f;#e8e893939393;#9e9ecece9e9e;#f0f0dfdfafaf;#8c8cd0d0d3d3;#c0c0bebed1d1;#dfdfafaf8f8f;#efefefefefef
@nphyx
nphyx / pastafarize
Created October 31, 2012 00:20
Pastafarize user script for greasemonkey
// ==UserScript==
// @name Pastafarize
// @description Replaces "God" with "Flying Spaghetti Monster" for the in-place edification of the faithful pastafarian via other religious texts.
// @grant none
// @exclude https://gist.github.com/*
// ==/UserScript==
var html = document.body.innerHTML;
html = html.replace(/God/g, "The Flying Spaghetti Monster");
document.body.innerHTML = html;