tidy proclaim

This commit is contained in:
maren 2024-04-13 23:00:38 -04:00
parent 5552b43133
commit c0d67e2cc8
1 changed files with 3 additions and 6 deletions

View File

@ -6,16 +6,13 @@ timezone=UTC
chatlog=/var/log/bunkchat/chat.log
prompt=""
makeSlug () {
# make time and date
makeprompt() {
time=$(TZ=${timezone} date +%I:%M%p)
date=$(TZ=${timezone} date +%m/%d)
# make name/time string
prompt="${username}-${date}-${time}"
}
# enter bunkchat mode (clear the screen)
# enter ~bunkchat mode~ (clear the screen)
clear
while true
@ -29,7 +26,7 @@ do
echo "----------------------------------"
printf "speak to the server: "
read -r text
makeSlug
makeprompt
echo "${prompt}: $text" >> $chatlog
clear
done