From 75e7661663460431d380ba2dc636bf5e4664f6cf Mon Sep 17 00:00:00 2001 From: "committer@tuxwarrior" Date: Sat, 3 May 2025 16:04:40 -0500 Subject: [PATCH] =?UTF-8?q?/=20tfun=20=E2=9E=94=20tss?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dots/bash/.bashrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dots/bash/.bashrc b/dots/bash/.bashrc index 5c2336a..0d25a12 100644 --- a/dots/bash/.bashrc +++ b/dots/bash/.bashrc @@ -209,9 +209,9 @@ rshift() { redshift -P -O ${temperature} } -# tfun aka. "terminal fun" - run random terminal "fun" command -tfun() { - commands=("aafire" "cacafire" "cmatrix" "unimatrix") +# tss aka terminal screen saver +tss() { + commands=("aafire -driver curses" "DISPLAY= cacafire" "cmatrix -a -b -s -u 5" "unimatrix.py") random_command=${commands[ $RANDOM % ${#commands[@]} ]} $random_command }