zshrc: pipes.sh und cbonsai in Screensaver-Rotation und Cheatsheet

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
rene 2026-03-27 13:11:40 +01:00
parent c4d9eeac6f
commit f3a8571057

View file

@ -218,6 +218,9 @@ tools() {
──────────────────────────────────────────────────────────────── ────────────────────────────────────────────────────────────────
cmatrix Matrix-Regen (q = quit) cmatrix Matrix-Regen (q = quit)
asciiquarium Aquarium im Terminal (q = quit) asciiquarium Aquarium im Terminal (q = quit)
pipes.sh animierte Rohre (q = quit)
cbonsai -l wachsender Bonsai-Baum (q = quit)
ls | nms Sneakers-Entschlüsselungseffekt
fortune | cowsay zufaelliger Spruch mit Kuh fortune | cowsay zufaelliger Spruch mit Kuh
TOOLS TOOLS
@ -229,6 +232,8 @@ TRAPALRM() {
local screensavers=() local screensavers=()
command -v cmatrix &>/dev/null && screensavers+=("cmatrix -sab") command -v cmatrix &>/dev/null && screensavers+=("cmatrix -sab")
command -v asciiquarium &>/dev/null && screensavers+=("asciiquarium") command -v asciiquarium &>/dev/null && screensavers+=("asciiquarium")
command -v pipes.sh &>/dev/null && screensavers+=("pipes.sh -t 0 -p 4")
command -v cbonsai &>/dev/null && screensavers+=("cbonsai -l")
(( ${#screensavers[@]} )) && eval "${screensavers[$((RANDOM % ${#screensavers[@]} + 1))]}" (( ${#screensavers[@]} )) && eval "${screensavers[$((RANDOM % ${#screensavers[@]} + 1))]}"
} }