aboutsummaryrefslogtreecommitdiff
path: root/x/xprofile
blob: 454700ffc6efe8f7f2512f20ec2ace1e0c6da558 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# Environment variables common to any X session

# Update browser, since .profile set this to a curses browser on login
# shellcheck disable=SC2034
BROWSER=x-www-browser

# Load all supplementary scripts in ~/.xprofile.d
for sh in "$HOME"/.xprofile.d/*.sh ; do
    [ -e "$sh" ] || continue
    . "$sh"
done
unset -v sh