# 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