#!/bin/csh -f #(ie run the cshell on this but don't read the .cshrc) # like topright but window starts closed # if there is an argument, run the $1 program in the window if (`sunos5.9`) then if ($#argv == 1) then # set arg = "-e $1" set arg = "$1" else set arg = "" endif xwtopright "$arg" & else # these cause the message "stty: : Invalid argument" # /bin/stty erase  # seterase # shelltool -Wp 668 73 -Ws 473 200 -WP 1080 0 -Wl topright -WL topright $1 & # move topright icon to the right of the elm window (70 units wide) shelltool -Wp 668 73 -Ws 473 200 -WP 1150 0 -Wl topright -WL topright $1 & endif