I hereby claim:
- I am bhundven on github.
- I am bryanhundven (https://keybase.io/bryanhundven) on keybase.
- I have a public key ASCYhZdivh0x3J0uJLWZCbdVEcYvK5O1tujNjqG9KEvsuQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/python2 | |
# Based on: https://bbs.archlinux.org/viewtopic.php?pid=962423#p962423 | |
# This version is modified to handle mailboxes with spaces in the names | |
import pyinotify | |
import pynotify | |
from os.path import expanduser | |
from mailbox import MaildirMessage | |
from email.header import decode_header | |
from gtk.gdk import pixbuf_new_from_file |
#!/bin/bash | |
# vi: ts=4:sw=4:et | |
# | |
# NINETEEN.SH | |
# This script allows you to install/update Enlightenment 19 git version on | |
# Ubuntu Wily/15.10 or Debian stretch/sid, or remove E19 git from your system. | |
# ******************************************************************** | |
# * This version builds enlightenment with wayland. * | |
# * That means this requires a very recent Ubuntu or Debian version. * | |
# * This may not work properly! You've been warned! * |
# vi: ts=4:sw=4:et:ai:ft=sh | |
quilt-add-patch () | |
{ | |
dir=$1;shift | |
patch_file=$1;shift | |
quilt new $(basename ${patch_file} | sed -e 's/\.diff//' | sed -e 's/\.patch//') | |
quilt add $(awk '/^---/{ print $2 }' "${dir}/${patch_file}" | sed -e 's/a\///') | |
patch -p1 < "${dir}/${patch_file}" | |
quilt refresh |
#!/bin/bash | |
# vi: ts=4:sw=4:et | |
# | |
# NINETEEN.SH | |
# This script allows you to install/update Enlightenment 19 git version on | |
# Ubuntu 14.04 LTS or Debian wheezy/sid, or remove E19 git from your system. | |
# Originally from: http://ubuntuforums.org/showthread.php?t=2203190 | |
# By: Philippe J. Guillaumie (batden AT sfr DOT fr). | |
# Additional updates by: Bryan Hundven (bryanhundven AT gmail DOT com). | |
# |