Gallery of current screensavers: https://github.com/attogram/bash-screensavers/blob/main/gall...
they're generally pretty but they should really hide the cursor, it looks offputting in basically all cases
Show HN: Bash Screensavers
41–50 of 82 posts
Re: Show HN: Bash Screensavers
#42Re: Show HN: Bash Screensavers
#43Re: Show HN: Bash Screensavers
#44Very cool! Reminds me of the various 90s movie pretend hacker typing screensavers like Neo-HackerTyper.
Re: Show HN: Bash Screensavers
#45 > /home/keeb/code/projects/login/motd.sh
Which has.. #!/usr/bin/env zsh
values=("bubbles" "slide" "beams" "rain" "pour" "synthgrid" "unstable" "poop")
len=${#values[@]}
index=$(( (RANDOM % (len - 1)) + 1 ))
selected=${values[$index]}
cat /home/keeb/code/projects/login/motd | tte $selected
Change motd to have an ascii art of your choice. Run it in a loop if you want :)1: https://keeb.dev/static/login.mp4 2: https://github.com/ChrisBuilds/terminaltexteffects
Re: Show HN: Bash Screensavers
#46You can put them onto your Plasma wallpaper and/or lockscreen background with plasma-wallpaper-application: https://invent.kde.org/dos/plasma-wallpaper-application (thought I'd share that since its raison d'être was to put Asciiquarium there :))
Ah, sweet! Do you know if this supports any DE (or no DE)? Or is it strictly for KDE Plasma?
When it comes to wallpapers, you could do a similar trick on X11 DEs by putting it onto the root window (with a tool like xwinwrap) and on Wayland DEs that support layer-shell (with a tool like windowtolayer). I'm not aware of screen lockers that do something like that, but you could always write your own one.
Re: Show HN: Bash Screensavers
#47Re: Show HN: Bash Screensavers
#48Re: Show HN: Bash Screensavers
#49I've used Emacs for years but just recently learned about zone.el. I wonder if this is based on it too. I see some of the same screensavers here.
Wow! The copyright of zone.el goes back to 2000. But this is the first time I hear about it! How did you find this gem?
Re: Show HN: Bash Screensavers
#50Earlier quoted context omitted.
Ah, sweet! Do you know if this supports any DE (or no DE)? Or is it strictly for KDE Plasma?
Plasma wallpaper plugins are, well, for Plasma. When it comes to wallpapers, you could do a similar trick on X11 DEs by putting it onto the root window (with a tool like xwinwrap) and on Wayland DEs that support layer-shell (with a tool like windowtolayer). I'm not aware of screen lockers that do something like that, but you could always write your own one.
Yeah, I've used xwinwrap before, but am lost on Wayland. I'll look into windowtolayer, thanks. I'd rather not have to write this myself...