blob: d1526d6147c656dbb4833237419b52ca331b6029 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
if status is-interactive; and not fish_is_root_user
# Console gopher browser to look for by order of preference
set -f browsers 'ncgopher'
# Find a suitable console web browser
set -f found_browser (find_prog $browsers)
if test -n "$found_browser"
alias gopher "$found_browser"
end
end
|