Skip to content

Instantly share code, notes, and snippets.

View nicklozon's full-sized avatar

Nick Lozon nicklozon

View GitHub Profile
# Tint2 config file
# Generated by tintwizard (http://code.google.com/p/tintwizard/)
# For information on manually configuring tint2 see http://code.google.com/p/tint2/wiki/Configure
# Background definitions
# ID 1
rounded = 0
border_width = 1
background_color = #2D2D2D 100
border_color = #484848 100
# Tint2 config file by Kexolino
# Background definitions
# ID 1
rounded = 0
border_width = 1
background_color = #2D2D2D 100
border_color = #484848 100
# Conky, a system monitor, based on torsmo
#
# Any original torsmo code is licensed under the BSD license
#
# All code written since the fork of torsmo is licensed under the GPL
#
# Please see COPYING for details
#
# Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen
# Copyright (c) 2005-2010 Brenden Matthews, Philip Kovacs, et. al. (see AUTHORS)
#!/bin/bash
# Update all git repositories in the given directory
# Originally intended for pathogen bundle folder to update all vim extensions
# Cron job:
# 0 20 * * * ~/.vim/bundle/update_all.sh
cd ~/.vim/bundle
find . -maxdepth 1 -mindepth 1 -type d -exec sh -c 'cd $0 && git pull' {} \;
#!/bin/sh
players=($(ls /home/unhinged/world/players | gawk '{ print $0 }' | gawk -F . '{ print $1 }'))
case $1 in
config)
cat <<'EOM'
graph_title Minecraft Players
graph_args --base 1000 -l 0
graph_vlabel Players
graph_scale no
@nicklozon
nicklozon / mirc_remote
Created June 1, 2012 13:47
mIRC NickServ identification and autojoin
on 1:NOTICE:This nickname is registered*:?:{
if ($network == freenode) {
/msg NickServ identify <password>
}
}
on 1:NOTICE:You are now identified for*:?:{
if ($network == freenode) {
/join #python,#jquery,#git,#vim,#bash,#css,#django,#nginx
}