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
This commit is contained in:
parent
7ddbafcf8c
commit
cb8f96a123
3 changed files with 31 additions and 3 deletions
30
README.md
30
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)
|
||||
|
|
|
|||
|
|
@ -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 #
|
||||
###############################################################
|
||||
|
||||
|
|
|
|||
|
|
@ -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")
|
||||
|
|
|
|||
Loading…
Reference in a new issue