summaryrefslogtreecommitdiff
path: root/.bash_profile
blob: 71d1582e2c06392a38f379e44ecc890ca9e881e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
[ -z "$XDG_RUNTIME_DIR" ] && export XDG_RUNTIME_DIR="/run/user/$UID"

if [ ! -d "$XDG_RUNTIME_DIR" ]
then
	mkdir "$XDG_RUNTIME_DIR"
	chmod 0700 "$XDG_RUNTIME_DIR"
fi

readonly tty="$(tty)"
[ -f ~/.bashrc ] && source ~/.bashrc