#!/bin/sh
if [ "$1" = -h ]; then
   echo "Selects the screen provided as argument."
   exit
fi
. "$WMII_RCCONF"
if [ $# -eq 1 ]; then
    _DISPLAY="`echo $DISPLAY | sed 's/\(.*\)\..*$/\1/'`.$1"
    DISPLAY=$_DISPLAY wmiwarp center
fi
