#!/bin/csh
#
# An xdrop for checking spelling
#

# args
set args="$*"

# icon directory
set icondir="~/xdrop"

# run xdrop
xdrop $args -x $icondir/spell32.xbm -l spell 'echo "$TEXT" | ispell -l > /tmp/spell ; xterm -e less /tmp/spell ; rm /tmp/spell'
