#!/bin/sh
if [ "$1" = -h ]; then
   echo "Selects the page provided as argument."
   exit
fi
. "$WMII_RCCONF"
if [ $# -eq 1 ]; then
    $WRITE /wm/ctl "select $1"
fi
