change default chat.log location and tone of prompts

This commit is contained in:
sorrel 2024-04-12 14:50:55 -04:00
parent 2815067b1c
commit 842d04c63a
3 changed files with 30 additions and 20 deletions

13
heed
View file

@ -1,12 +1,17 @@
#!/bin/sh -e #!/bin/sh -e
chatlog="/var/log/bunkchat/chat.log"
clear clear
figlet -f future heed - bunkchat echo "╻ ╻┏━╸┏━╸╺┳┓ ┏┓ ╻ ╻┏┓╻╻┏ ┏━╸╻ ╻┏━┓╺┳╸"
echo "┣━┫┣╸ ┣╸ ┃┃ ╺━╸ ┣┻┓┃ ┃┃┗┫┣┻┓┃ ┣━┫┣━┫ ┃ "
echo "╹ ╹┗━╸┗━╸╺┻┛ ┗━┛┗━┛╹ ╹╹ ╹┗━╸╹ ╹╹ ╹ ╹ "
echo "#######################################################################" echo "#######################################################################"
echo "# Take heed, $USER! This is a group chat with everyone on the server! #" echo " Take heed, $USER! This is a group chat with everyone on the server!"
echo "# You can view earlier chat with 'scry' or 'less /srv/bunkchat.txt' #" echo " You can view earlier chat with 'scry' or 'less /srv/bunkchat.txt'"
echo "#######################################################################" echo "#######################################################################"
echo echo
tail -f /srv/bunkchat.txt tail -f $chatlog

View file

@ -1,9 +1,10 @@
#!/bin/bash -e #!/bin/sh -e
# make username uppercase # make username uppercase
username=$(echo "$USER" | tr '[:lower:]' '[:upper:]') username=$(echo "$USER" | tr '[:lower:]' '[:upper:]')
timezone="America/New_York" timezone="UTC"
declare prompt chatlog="/var/log/bunkchat/chat.log"
prompt=""
makeSlug () { makeSlug () {
# make time and date # make time and date
@ -19,11 +20,14 @@ clear
while true while true
do do
figlet -f future proclaim - bunkchat echo "┏━┓┏━┓┏━┓┏━╸╻ ┏━┓╻┏┳┓ ┏┓ ╻ ╻┏┓╻╻┏ ┏━╸╻ ╻┏━┓╺┳╸"
echo "You may view old chat with 'scry', heathen." echo "┣━┛┣┳┛┃ ┃┃ ┃ ┣━┫┃┃┃┃ ╺━╸ ┣┻┓┃ ┃┃┗┫┣┻┓┃ ┣━┫┣━┫ ┃ "
echo "-------------------------------------------" echo "╹ ╹┗╸┗━┛┗━╸┗━╸╹ ╹╹╹ ╹ ┗━┛┗━┛╹ ╹╹ ╹┗━╸╹ ╹╹ ╹ ╹ "
read -r -p "speak to the server: " text echo "You may view old chat with 'scry'!"
echo "----------------------------------"
printf "speak to the server: " >&2
read -r text
makeSlug makeSlug
echo "${prompt}: $text" >> /srv/bunkchat.txt echo "${prompt}: $text" >> $chatlog
clear clear
done done

3
scry
View file

@ -1,3 +1,4 @@
#!/bin/sh -e #!/bin/sh -e
chatlog="/var/log/bunkchat/chat.log"
less /srv/bunkchat.txt less $chatlog