#!/bin/ash
#this is to run X apps in the initrd.

/usr/bin/xsetroot -cursor_name top_left_arrow

if [ $2 ];then
 exec /${1} ${2}
else
 exec /${1}
fi
