X-Git-Url: https://git.distorted.org.uk/~mdw/profile/blobdiff_plain/9651a84b95a10e444cdb5d0fb0558c7cda1ac28b..69186ec25e94e812e29fb6460797b79ace5ebd7c:/dot/bash_profile diff --git a/dot/bash_profile b/dot/bash_profile index 764f6b3..27eec06 100644 --- a/dot/bash_profile +++ b/dot/bash_profile @@ -69,7 +69,7 @@ cd $HOME ## The main path. __mdw_addto PATH l \ $HOME/bin \ - {,/usr{,/local}{,/X11R6}}{/bin,/sbin,/games} \ + {/usr{/local,}{,/X11R6},}{/bin,/sbin,/games} \ /opt/nfast{,/gcc}{/bin,/sbin} \ $HOME/src/ncipher/scripts @@ -182,6 +182,20 @@ export PERL_READLINE_NOWARN=yes ## If we have `distcc' then tell `ccache' to use it. __mdw_programp distcc && export CCACHE_PREFIX=distcc +## Choose a sensible web browser. If we have a display, try to pick a +## graphical one. +browsers="elinks w3m lynx" +case "${DISPLAY+t}" in + t) browsers="mdw-chrome iceweasel firefox $browsers" ;; +esac +for i in $browsers; do + if __mdw_programp $i; then + export BROWSER=$i + break + fi +done +unset browsers + ## Acquiring root privileges. This is mainly the job of `bashrc', but we ## cache the mechanism here. export __MDW_ROOTLY=`mdw-conf rootly`