-
-
Save tornewuff/4543518 to your computer and use it in GitHub Desktop.
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).
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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;; | |
"-v" | "--version") NEED_FOREGROUND=1;; | |
esac | |
done | |
if [ -n "$NEED_FOREGROUND" ]; then | |
exec sublime_text "$@" | |
else | |
exec sublime_text "$@" </dev/null >/dev/null 2>/dev/null & | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment