Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Dec 30th, 2011  |  syntax: Bash  |  size: 0.28 KB  |  hits: 474  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. # if BROWSER variable is not set, check some well known browsers instead
  2. if [ x"$BROWSER" = x"" ]; then
  3.     BROWSER=links2:links:lynx:w3m
  4.     if [ -n "$DISPLAY" ]; then
  5.         BROWSER=firefox:mozilla:epiphany:konqueror:qbittorrent:chromium-browser:google-chrome:$BROWSER
  6.     fi
  7. fi