#!/bin/sh

# initialize X resource database (if file ~/.Xresources is present on the system)
# [[ -f ~/.Xresources ]] && xrdb -merge -I$HOME ~/.Xresources
xrdb -load ~/.Xresources

if [ -d /etc/X11/xinit/xinitrc.d ]; then
  for f in /etc/X11/xinit/xinitrc.d/*; do
    [ -x "$f" ] && . "$f"
  done
  unset f
fi

# xset r rate 260 90  # use /etc/X11/xorg.conf.d
xset dpms 300 600 900

exec xsetroot -solid "#222222" &
exec i3