mirror of
https://github.com/lloeki/toolbelt.git
synced 2025-12-06 10:04:40 +01:00
4 lines
125 B
Bash
Executable file
4 lines
125 B
Bash
Executable file
#!/bin/bash
|
|
while sleep 0.07; do
|
|
printf "%-$(( ( RANDOM % `tput cols` ) - 1))s\e[0;$(( 30 + ($RANDOM % 8) ))m♥\n"
|
|
done
|