4
0
Fork 0

Gen6 Tea <3

master
six 2025-05-06 03:07:46 +00:00
parent 78a5227e54
commit 5eb394a24d
1 changed files with 24 additions and 0 deletions

View File

@ -45,3 +45,27 @@ function rnd {
cat /dev/urandom | tr -dc _A-Z-a-z-0-9.,! | head -c${1:-64};echo;
}
# Gen6 Tea lovers, 2 minute timer with optional sound
function t2 {
local N=120
while (( --N > 0 )); do
echo $N
sleep 1
reset
done
echo "Time's up!"
#aplay /usr/share/sounds/ubuntu/stereo/bell.oga
}
# Gen6 Tea lovers, 3 minute timer with optional sound
function t3 {
local N=180
while (( --N > 0 )); do
echo $N
sleep 1
reset
done
#aplay /usr/share/sounds/ubuntu/stereo/bell.oga
}