#!/bin/csh # /usr/scripts/x2 # # Filename: xtools # # Author: Kevin FitzGerrell # Comments to: kfitz@gci.net or fitzgerrell@yahoo.com # # Usage: Copy this file to your computer and make it executable (chmod a+x) # Replace station name in the first line with the station name of your # xterminal (or xterminal emulator). Then just run it. I run it from a screen # display by just pushing a button. # # Description: This script opens Openwindows tools on your xterminal or # remote station. Remark or unremark the appropriate tools. I use it primarily # to pop open a command tool (cmdtool) and a text editor (textedit) on the # xterminal or the PC in our engineering office. There are other openwin tools # that I didn't bother including. # # For this to work, you need to replace the station name here (xterm2) with the # station name of your target station. setenv DISPLAY xterm2:0.0 # Text editor - much more convenient and intuitive than VI /usr/openwin/bin/textedit & # Command tool - lots more convenient than a VT-100 window /usr/openwin/bin/cmdtool & # File manager # /usr/openwin/bin/filemgr & # Calculator # /usr/openwin/bin/calctool & # Snapshot, take raster image copies of a window or screen -- cool! # /usr/openwin/bin/snapshot & # Image tool, use with snapshot images # /usr/openwin/bin/imagetool & # Calender manager # /usr/openwin/bin/cm & # Performance meter - show system loading # I still haven't figured out how to close this thing, I just kill it when I'm done. # /usr/openwin/bin/perfmeter &