summaryrefslogtreecommitdiff
path: root/.profile
blob: 4cf4f83fb64409e4d780e81d06f9896e3dd450ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export ENV=$HOME/.kshrc
[ -f "$HOME/.config/shell/profile" ] && . "$HOME/.config/shell/profile"

if [ -d $HOME/.config/shell/profile.d ]; then
  for i in $HOME/.config/shell/profile.d/*.sh; do
    if [ -r $i ]; then
      . $i
    fi
  done
  unset i
fi

if [ -z "$DISPLAY" ] && [ "$(tty)" = /dev/tty1 ]; then
  startx
fi