From cb8f96a1233af4d790e60817aceb4833c4d749d6 Mon Sep 17 00:00:00 2001 From: pyr0ball Date: Mon, 20 Jul 2026 16:01:57 -0700 Subject: [PATCH] docs: remove real names; add quickinfo-only install docs - Replace full name attribution with pyr0ball handle in 11-quickinfo.bashrc and crystallite.vim - Remove "Xander" name reference from orchard profile description in README - Add quickinfo-only install section for setting up the login splash without a full PRbL install --- README.md | 30 +++++++++++++++++++++++++- lib/skel/.bashrc.d/11-quickinfo.bashrc | 2 +- lib/vimfiles/crystallite.vim | 2 +- 3 files changed, 31 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e54ed4b..81a269a 100644 --- a/README.md +++ b/README.md @@ -89,7 +89,7 @@ For GPU worker nodes joining an existing `cf-orch` orchard. Clones `circuitforge Use this for: - Adding a GPU machine to an existing CircuitForge compute cluster -- Xander's orchard nodes or any remote worker joining a coordinator +- Any remote worker node joining a coordinator --- @@ -121,6 +121,34 @@ Available apps: --- +## Quickinfo only (no full install) + +To get the login splash screen without installing PRbL or changing anything else on the system: + +```bash +# Create the drop-in directory if it doesn't exist +mkdir -p ~/.bashrc.d + +# Copy the quickinfo scripts +cp lib/skel/.bashrc.d/11-quickinfo.bashrc ~/.bashrc.d/ +cp lib/skel/.bashrc.d/11-quickinfo.settings ~/.bashrc.d/ + +# Wire up the drop-in directory if your .bashrc doesn't already include it +grep -q 'bashrc.d' ~/.bashrc || cat >> ~/.bashrc << 'EOF' + +# Load drop-in bashrc modules +for f in ~/.bashrc.d/*.bashrc; do [ -f "$f" ] && source "$f"; done +EOF +``` + +The quickinfo script self-sources PRbL at runtime (via curl/wget) so no prior PRbL install is needed. + +Customize display options by editing `~/.bashrc.d/11-quickinfo.settings` — you can hide disconnected adapters, filter specific network interfaces, or restrict which disks are shown. + +Open a new terminal (or `source ~/.bashrc`) to see the splash. + +--- + ## Planned - Expanded automatic OS detection and package management (non-Debian/Ubuntu) diff --git a/lib/skel/.bashrc.d/11-quickinfo.bashrc b/lib/skel/.bashrc.d/11-quickinfo.bashrc index 6074331..aabfcf1 100755 --- a/lib/skel/.bashrc.d/11-quickinfo.bashrc +++ b/lib/skel/.bashrc.d/11-quickinfo.bashrc @@ -6,7 +6,7 @@ # in a Linux system, and aggregates it into a small table # # that is displayed upon terminal login to the system. # # # -# Written by Alan "pyr0ball" Weinstock # +# Written by pyr0ball # # Enhanced for multi-distro compatibility # ############################################################### diff --git a/lib/vimfiles/crystallite.vim b/lib/vimfiles/crystallite.vim index 70cd3c5..3417519 100644 --- a/lib/vimfiles/crystallite.vim +++ b/lib/vimfiles/crystallite.vim @@ -1,6 +1,6 @@ " Vim color file - crystallite " Original colorscheme credit tomsik68 https://github.com/tomsik68/vim-crystallite -" Adapted for personal use by Alan Weinstock - 2016/09/30 +" Adapted for personal use by pyr0ball - 2016/09/30 if version > 580 hi clear if exists("syntax_on")