BSD 4_3_Reno release
[unix-history] / usr / src / usr.bin / window / windowrc
index a4bd065..adfa893 100644 (file)
@@ -1,26 +1,57 @@
-# @(#)windowrc 3.6 %G%
-
+# @(#)windowrc 3.8 2/21/88
+#
 # Copyright (c) 1983 Regents of the University of California,
 # All rights reserved.  Redistribution permitted subject to
 # the terms of the Berkeley Software License Agreement.
 # Copyright (c) 1983 Regents of the University of California,
 # All rights reserved.  Redistribution permitted subject to
 # the terms of the Berkeley Software License Agreement.
-
+#
 # Configuration file example for window manager
 # To be installed in ~/.windowrc
 #
 # Configuration file example for window manager
 # To be installed in ~/.windowrc
 #
-# Create two unequal sized windows of full screen width.
+# Create two unequal sized windows of full screen width,
+# and set up some useful aliases.
+#
 
 
-# terse                                # set terse mode
-# escape ^A                    # set escape character
-# buffer 50                    # set default buffer size
+#
+# Optional settings
+#
+# terse on                     # set terse mode
+# escape "^A"                  # set escape character
+# nline 100                    # set default buffer size
                                # initially, this is 48
 
                                # initially, this is 48
 
-# Make 2 windows
+#
+# Make two windows
 # The bottom one is MIN(24, total lines * 3 / 4) lines
 # The top one is the rest of the screen.
 # The bottom one is MIN(24, total lines * 3 / 4) lines
 # The top one is the rest of the screen.
-tmp = $nrow * 3 / 4
-tmp = $tmp > 24 ? $nrow - 24 - 1 : $nrow - $tmp - 1
-window row = 0, nrow = $tmp, label = "Top Window"
-window row = $tmp + 1, label = "Bottom Window"
-unset tmp
+#
+three_fourth = $nrow - ((_ = $nrow * 3 / 4) > 24 ? 24 : $_)
+unset _
+window row = 0, nrow = $three_fourth - 1, label = "Top"
+window row = $three_fourth, label = "Local"
 
 
-%1                             # current window is 1
+#
+# Useful aliases
+#
+#
+# Standard window
+#
+alias std "window r = $three_fourth, l = $?1 ? $1 : ''"
+#
+# Sysline, add your own options
+#
+alias sysline "_ = select();" \
+       "foreground window(r = 0, nr = 1, nc = $ncol + 1, nl = 0," \
+               "l = sysline, pty = no, frame = no, sh = sysline \\-w), 1;" \
+       "select $_; unset _"
+#
+# Rlogin
+#
+alias rlogin "window r = $three_fourth, l = $1, pty = no, mapnl = no," \
+       "sh = sh \\-c 'echo $TERMCAP | rsh ' + $1 + ' \\'cat > .TERMCAP\\' ;" \
+       "exec rlogin ' + $1"
+alias rl rlogin \$1
+#
+# Two equal windows
+#
+alias two "window r = 1, nr = $nrow / 2 - 1, l = top;" \
+       "window r = $nrow / 2 + 1, l = bottom"