Skip to content

Instantly share code, notes, and snippets.

View tornewuff's full-sized avatar

Torne Wuff tornewuff

View GitHub Profile
@tornewuff
tornewuff / subl
Created January 16, 2013 00:28
Script to wrap Sublime Text 2 on Linux, handling proper background invocation and using rmate to edit remotely when not in an X session (the guess being that if there's no DISPLAY we are connected via ssh).
#!/bin/bash
if [ -z "$DISPLAY" ]; then
exec rmate "$@"
fi
for arg do
case $arg in
"-w" | "--wait") NEED_FOREGROUND=1;;
"-h" | "--help") NEED_FOREGROUND=1;;