#!/bin/sh

# display the manpage if there is no user configuration
if [ ! -d ~/.xmonad ]; then
  xterm -e man xmonad &
fi

exec xmonad
