Many changes

This commit is contained in:
Scott C. MacCallum 2025-04-07 10:31:49 -04:00
parent c51b4ec8cd
commit cd6e74f160
13 changed files with 27 additions and 26 deletions

View File

@ -1,4 +1,4 @@
#!/usr/local/bin/bash
#!/usr/bin/env bash
# bboard.sh
# Secure shell into SDF for bboard usage.

2
com.sh
View File

@ -1,4 +1,4 @@
#!/usr/local/bin/bash
#!/usr/bin/env bash
# com.sh
# Secure shell into SDF for com.

View File

@ -1,4 +1,4 @@
#!/usr/local/bin/bash
#!/usr/bin/env bash
# email.sh
# Secure shell into SDF for email.

29
init.el
View File

@ -36,49 +36,50 @@
;; Scroll one line at a time
(setq scroll-conservatively most-positive-fixnum)
;; Automatically refresh a buffer when a change is detected
(global-auto-revert-mode t)
;; bboard
;; Load the bboard function
(let((file(concat(getenv "HOME")"/seid/bboard.el")))
(load-file file))
;; com
;; Load the com function
(let((file(concat(getenv "HOME")"/seid/com.el")))
(load-file file))
;; email
;; Load the email function
(let((file(concat(getenv "HOME")"/seid/email.el")))
(load-file file))
;; irc-fsf
;; Load the irc-fsf function
(let((file(concat(getenv "HOME")"/seid/irc-fsf.el")))
(load-file file))
;; irc-sdf
;; Load the irc-sdf function
(let((file(concat(getenv "HOME")"/seid/irc-sdf.el")))
(load-file file))
;; moo
;; Load the moo function
(let((file(concat(getenv "HOME")"/seid/moo.el")))
(load-file file))
;; term-local
;; Load the term-local function
(let((file(concat(getenv "HOME")"/seid/term-local.el")))
(load-file file))
;; term-sdf
;; Load the term-sdf function
(let((file(concat(getenv "HOME")"/seid/term-sdf.el")))
(load-file file))
;; vintage
;; Load the vintage function
(let((file(concat(getenv "HOME")"/seid/vintage.el")))
(load-file file))
;; vps
;; Load the vps function
(let((file(concat(getenv "HOME")"/seid/vps.el")))
(load-file file))
;; www
;; Load the www function
(let((file(concat(getenv "HOME")"/seid/www.el")))
(load-file file))
;; Load the seid-functions text file
(let((file(concat(getenv "HOME")"/seid/seid-functions")))
(find-file file))

View File

@ -1,4 +1,4 @@
#!/usr/local/bin/bash
#!/usr/bin/env bash
# irc-fsf.sh
# Start libera.chat IRC session for FSF channel connection.

View File

@ -1,4 +1,4 @@
#!/usr/local/bin/bash
#!/usr/bin/env bash
# irc-sdf.sh
# Start an IRC session to connect to SDF channels.

2
moo.sh
View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# moo.sh
# Telnet into your favorite moo.

View File

@ -1,4 +1,4 @@
#/usr/local/bin/bash
#!/usr/bin/env bash
# resume-seid.sh
# Resume previous SEID session.

View File

@ -1,4 +1,4 @@
#!/usr/local/bin/bash
#!/usr/bin/env bash
# run-seid.sh
# Run the SEID program.

View File

@ -1,4 +1,4 @@
#!/usr/local/bin/bash
#!/usr/bin/env bash
# term-sdf.sh
# Secure shell into SDF cluster.

View File

@ -1,4 +1,4 @@
#!/usr/local/bin/bash
#!/usr/bin/env bash
# vintage.sh
# Secure shell into SDF for vintage system usage.

2
vps.sh
View File

@ -1,4 +1,4 @@
#!/usr/local/bin/bash
#!/usr/bin/env bash
# vps.sh
# Secure shell into SDF for VPS usage.

2
www.sh
View File

@ -1,4 +1,4 @@
#!/usr/local/bin/bash
#!/usr/bin/env bash
# www.sh
# Run a local WWW session.