Make Holidays inclusive!

This commit is contained in:
Nick Chambers 2021-12-14 23:04:34 -06:00
parent b10fd65d68
commit 72c76d1782
1 changed files with 3 additions and 3 deletions

View File

@ -46,7 +46,7 @@ done
tput setaf 1
tput bold
tput cup "$lines" "$(( cur_col - 6 ))"
printf 'MERRY CHRISTMAS\n'
printf 'HAPPY HOLIDAYS\n'
tput cup "$(( lines + 1 ))" "$(( cur_col - 10 ))"
printf 'And lots of CODE in %d\n' "$new_year"
@ -65,8 +65,8 @@ while true; do
tput bold
tput cup "${line[$needle_pos]}" "${column[$needle_pos]}"
printf '*'
unset line["$needle_pos"]
unset column["$needle_pos"]
unset "line[$needle_pos]"
unset "column[$needle_pos]"
fi
new_line=$(( RANDOM % 9 + 3 ))