From 71d6c6353ea110f549513eba3b37707db5d8b013 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Thu, 14 Apr 2011 20:15:15 -0400 Subject: Fiddle with .profile, add a v-www-browser script, configure browse-url in .emacs Move login-stuff from `.bashrc' to `.profile', which loads `.bashrc' if it is a bash shell (hopefully). Add `.Xsession', wich includes `.profile'. `bin/v-www-browser' (technically not a dotfile), is a script that loads either www-browser or x-www-browser, depending on if we're using X11 or not (really, whether $DISPLAY is set). `.emacs' was edited to have browse-url run v-www-browser instead of www-browser. --- bin/v-www-browser | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 bin/v-www-browser (limited to 'bin') diff --git a/bin/v-www-browser b/bin/v-www-browser new file mode 100755 index 0000000..005b7a1 --- /dev/null +++ b/bin/v-www-browser @@ -0,0 +1,7 @@ +#!/bin/sh + +if [ -n "$DISPLAY" ]; then + x-www-browser $@ +else + www-browser $@ +fi -- cgit v1.2.3-2-g168b