63 lines
1.2 KiB
Plaintext
63 lines
1.2 KiB
Plaintext
;; Disable menu bar
|
|
(menu-bar-mode -1)
|
|
|
|
;; Diable startup message
|
|
(setq inhibit-startup-screen t)
|
|
|
|
;; Automatically refresh a buffer when a change is detected
|
|
(global-auto-revert-mode t)
|
|
|
|
;; Enable column number mode
|
|
(column-number-mode t)
|
|
|
|
;; Display the time in 12 hour format
|
|
(display-time-mode t)
|
|
|
|
;; Split the screen vertically
|
|
(split-window-vertically)
|
|
|
|
;; Move the cursor to the bottom screen
|
|
(other-window 1)
|
|
|
|
;; Make the bottom screen smaller
|
|
(shrink-window 8)
|
|
|
|
;; Run ansi-term
|
|
(ansi-term "/bin/ksh")
|
|
|
|
;; Rename the buffer to shell
|
|
(rename-buffer "shell1")
|
|
|
|
;; Move the cursor to the top screen
|
|
(other-window 1)
|
|
|
|
;; Run ansi-term
|
|
(ansi-term "/bin/ksh")
|
|
|
|
;; Rename the buffer to shell2
|
|
(rename-buffer "shell2")
|
|
|
|
;; Run links
|
|
(ansi-term "/usr/local/bin/links")
|
|
|
|
;; Rename the buffer to shell
|
|
(rename-buffer "web")
|
|
|
|
;; Run bboard.ksh to load bboard on SDF
|
|
(ansi-term "/home/scm/sdf/bboard.ksh")
|
|
|
|
;; Rename the buffer to bboard
|
|
(rename-buffer "bboard")
|
|
|
|
;; Run com.ksh to load com on SDF
|
|
(ansi-term "/home/scm/sdf/com.ksh")
|
|
|
|
;; Rename the buffer to com
|
|
(rename-buffer "com")
|
|
|
|
;; Run irc.ksh to recover the IRC screen session on the cluster at SDF
|
|
(ansi-term "/home/scm/sdf/irc.ksh")
|
|
|
|
;; Rename the buffer to com
|
|
(rename-buffer "irc")
|