diff options
author | Alexander Sulfrian <alexander@sulfrian.net> | 2008-10-31 00:02:27 +0100 |
---|---|---|
committer | Alexander Sulfrian <alexander@sulfrian.net> | 2008-10-31 00:02:27 +0100 |
commit | d29929d012f50a96336d6a4e2dce07c870a7ee2c (patch) | |
tree | 749c28d7033d848a7b6a64a4ff95e4f685f00cfa /bashrc/common | |
parent | 449ceafbbdd8c8847b27ad883c7746397fbb4b96 (diff) | |
download | dotfiles-d29929d012f50a96336d6a4e2dce07c870a7ee2c.tar.gz dotfiles-d29929d012f50a96336d6a4e2dce07c870a7ee2c.tar.xz dotfiles-d29929d012f50a96336d6a4e2dce07c870a7ee2c.zip |
browser hinzugefĆ¼gt
Diffstat (limited to '')
-rw-r--r-- | bashrc/common/browser.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/bashrc/common/browser.sh b/bashrc/common/browser.sh new file mode 100644 index 0000000..e01dd61 --- /dev/null +++ b/bashrc/common/browser.sh @@ -0,0 +1,13 @@ +# browser options + +# but user opera, if available +if hash opera > /dev/null 2>&1 ; then + export PAGER=opera +else + + # use firefox by default ... + if hash firefox > /dev/null 2&>1 ; then + export BROWSER=firefox + fi +fi + |