summaryrefslogtreecommitdiff
path: root/.profile
blob: 771413771dd3a9b48eb76fabcfc9988d3b454764 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
[ -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