From 6c02ce982ae4d2403fdfd17506170b2a14522b60 Mon Sep 17 00:00:00 2001 From: rene Date: Sun, 15 Mar 2026 10:27:08 +0100 Subject: [PATCH] zshrc: cmatrix Terminal-Screensaver nach 5 Min Idle Co-Authored-By: Claude Opus 4.6 --- zsh/.zshrc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/zsh/.zshrc b/zsh/.zshrc index 8964a2f..820bb9b 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -74,3 +74,9 @@ setopt AUTO_CD # 9) Fenster-/Tab-Titel precmd() { print -Pn "\e]0;%n@%m: %~\a" } export COLORTERM=truecolor + +# Terminal-Screensaver: cmatrix nach 5 Min Idle +if command -v cmatrix &>/dev/null; then + TMOUT=300 + TRAPALRM() { cmatrix -sab } +fi