In a similar vein in Emacs: M-x zone Every time you run it, it triggers a random screen saver effect. Fun when it's on a timer and triggers so your work colleagues wonder wth is going on.
TTE: Terminal Text Effects
211–220 of 279 posts
Re: TTE: Terminal Text Effects
#212In a similar vein in Emacs: M-x zone Every time you run it, it triggers a random screen saver effect. Fun when it's on a timer and triggers so your work colleagues wonder wth is going on.
Available in the menu: Tools → Games → Zone Out
Re: TTE: Terminal Text Effects
#213Earlier quoted context omitted.
I was thinking about how fun it would be to add this my Python CLI [0] I made for launching Fedora CoreOS locally with QEMU for testing ignition, but with a flag that is turned off by default. Using the burn effect in TTE when launching a VM with my CLI would be so cool. This instantly reminded me about Ansible and how it annoyed me that ANSIBLE_NOCOWS had to be enabled to disable the default output of Ansible with c…
On a further tangent, that reminds me of two of my favorite things to install on a Linux system, ponysay and ascii-pony/systempony. I set each of my systems to a different character to show on bash logins with systempony (WSL instances included) https://github.com/erkin/ponysay https://blog.yjl.im/2016/01/ascii-pony-systempony-screenshot...
Re: TTE: Terminal Text Effects
#214Re: TTE: Terminal Text Effects
#215This is cool! we can utilize the 'Burn' or 'ErrorCorrect' effects to highlight warnings or errors in logs dynamically, ensuring critical issues stand out in ongoing terminal output.
No. No, you don't. No one investigating log files wants animations playing in them.
Re: TTE: Terminal Text Effects
#216Re: TTE: Terminal Text Effects
#217https://www.youtube.com/watch?v=b4lmMADP1lA
Mind you, this rendered entirely in a terminal. You can try it yourself on most systems by installing notcurses and then running `notcurses-demo`.
Re: TTE: Terminal Text Effects
#218Re: TTE: Terminal Text Effects
#219I integrated this[1] with my MOTD on ssh login.. :) With random effect each time. 1: https://keeb.dev/static/login.mp4
How do you do that? If possible share the script please..
printssh() {
tte --input-file YOUR_FILE --frame-rate=500 $(echo "beams binarypath blackhole bouncyballs bubbles burn colorshift crumble decrypt errorcorrect expand fireworks middleout orbittingvolley overflow pour print rain randomsequence rings scattered slice slide spotlights spray swarm synthgrid unstable vhstape waves wipe" | tr ' ' '\n' | shuf -n 1)
ssh "$@"
}
alias ssh="printssh"