aboutsummaryrefslogtreecommitdiff
path: root/sh/profile.d/browser.sh
blob: 2b060b06c38371917c97969938dfd14172bc9050 (plain) (blame)
1
2
3
4
5
6
7
8
9
# Browser
if [ -n "$DISPLAY" ]
then
    BROWSER='firefox'
else
    BROWSER='lynx'
fi
export BROWSER