blob: 7afb6a2b8a91827ae9f389efe26496a96f7fbc67 (
plain)
- # load profile and xprofile when using lightdm
- #
- # borrowed from /etc/gdm3/Xsession
- if pidof lightdm; then
- # First read /etc/profile and .profile
- test -f /etc/profile && . /etc/profile
- test -f "$HOME/.profile" && . "$HOME/.profile"
- # Second read /etc/xprofile and .xprofile for X specific setup
- test -f /etc/xprofile && . /etc/xprofile
- test -f "$HOME/.xprofile" && . "$HOME/.xprofile"
- fi
|