# Load profile

for file in "/etc/profile" "$HOME/.config/.profile" "/etc/xprofile" "$HOME/.config/X11/xprofile"; do
  if [ -f "$file" ]; then
    echo "Loading profile from $file"
    . "$file"
  fi
done

# Load resources
for file in "/etc/X11/Xresources" "$HOME/.config/X11/Xresources"; do
  if [ -f "$file" ]; then
    echo "Loading resource: $file"
    xrdb -merge "$file"
  fi
done

# Load keymaps
for file in "/etc/X11/Xkbmap" "$HOME/.config/X11/Xkbmap"; do
  if [ -f "$file" ]; then
    echo "Loading keymap: $file"
    setxkbmap $(cat "$file")
    XKB_IN_USE=yes
  fi
done

# Load xmodmap if not using XKB
if [ -z "$XKB_IN_USE" ]; then
  for file in "/etc/X11/Xmodmap" "$HOME/.config/X11/Xmodmap"; do
    if [ -f "$file" ]; then
      echo "Loading modmap: $file"
      xmodmap "$file"
    fi
  done
fi

unset XKB_IN_USE

# Run all system xinitrc shell scripts
xinitdir="/etc/X11/xinit/xinitrc.d"
if [ -d "$xinitdir" ]; then
  for script in $xinitdir/*; do
    echo "Loading xinit script $script"
    if [ -x "$script" -a ! -d "$script" ]; then
      . "$script"
    fi
  done
fi

# Run user xsession shell script
script="$HOME/.config/X11/xsession"
if [ -x "$script" -a ! -d "$script" ]; then
  echo "Loading xsession script $script"
  . "$script"
fi

export USERXSESSION="$XDG_CACHE_HOME/X11/xsession"
export USERXSESSIONRC="$XDG_CACHE_HOME/X11/xsessionrc"
export ALTUSERXSESSION="$XDG_CACHE_HOME/X11/Xsession"
export ERRFILE="$XDG_CACHE_HOME/X11/xsession-errors"

exec i3