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 # bboard.sh
# Secure shell into SDF for bboard usage. # 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 # com.sh
# Secure shell into SDF for com. # Secure shell into SDF for com.

View File

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

29
init.el
View File

@ -36,49 +36,50 @@
;; Scroll one line at a time ;; Scroll one line at a time
(setq scroll-conservatively most-positive-fixnum) (setq scroll-conservatively most-positive-fixnum)
;; Automatically refresh a buffer when a change is detected ;; Load the bboard function
(global-auto-revert-mode t)
;; bboard
(let((file(concat(getenv "HOME")"/seid/bboard.el"))) (let((file(concat(getenv "HOME")"/seid/bboard.el")))
(load-file file)) (load-file file))
;; com ;; Load the com function
(let((file(concat(getenv "HOME")"/seid/com.el"))) (let((file(concat(getenv "HOME")"/seid/com.el")))
(load-file file)) (load-file file))
;; email ;; Load the email function
(let((file(concat(getenv "HOME")"/seid/email.el"))) (let((file(concat(getenv "HOME")"/seid/email.el")))
(load-file file)) (load-file file))
;; irc-fsf ;; Load the irc-fsf function
(let((file(concat(getenv "HOME")"/seid/irc-fsf.el"))) (let((file(concat(getenv "HOME")"/seid/irc-fsf.el")))
(load-file file)) (load-file file))
;; irc-sdf ;; Load the irc-sdf function
(let((file(concat(getenv "HOME")"/seid/irc-sdf.el"))) (let((file(concat(getenv "HOME")"/seid/irc-sdf.el")))
(load-file file)) (load-file file))
;; moo ;; Load the moo function
(let((file(concat(getenv "HOME")"/seid/moo.el"))) (let((file(concat(getenv "HOME")"/seid/moo.el")))
(load-file file)) (load-file file))
;; term-local ;; Load the term-local function
(let((file(concat(getenv "HOME")"/seid/term-local.el"))) (let((file(concat(getenv "HOME")"/seid/term-local.el")))
(load-file file)) (load-file file))
;; term-sdf ;; Load the term-sdf function
(let((file(concat(getenv "HOME")"/seid/term-sdf.el"))) (let((file(concat(getenv "HOME")"/seid/term-sdf.el")))
(load-file file)) (load-file file))
;; vintage ;; Load the vintage function
(let((file(concat(getenv "HOME")"/seid/vintage.el"))) (let((file(concat(getenv "HOME")"/seid/vintage.el")))
(load-file file)) (load-file file))
;; vps ;; Load the vps function
(let((file(concat(getenv "HOME")"/seid/vps.el"))) (let((file(concat(getenv "HOME")"/seid/vps.el")))
(load-file file)) (load-file file))
;; www ;; Load the www function
(let((file(concat(getenv "HOME")"/seid/www.el"))) (let((file(concat(getenv "HOME")"/seid/www.el")))
(load-file file)) (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 # irc-fsf.sh
# Start libera.chat IRC session for FSF channel connection. # 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 # irc-sdf.sh
# Start an IRC session to connect to SDF channels. # 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 # moo.sh
# Telnet into your favorite moo. # Telnet into your favorite moo.

View File

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

View File

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

View File

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

View File

@ -1,4 +1,4 @@
#!/usr/local/bin/bash #!/usr/bin/env bash
# vintage.sh # vintage.sh
# Secure shell into SDF for vintage system usage. # 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 # vps.sh
# Secure shell into SDF for VPS usage. # 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 # www.sh
# Run a local WWW session. # Run a local WWW session.