You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

21 lines
543 B

recording_banner() {
if [ $(ps -C obs | wc -l) == "2" ]; then
if [ -f ~/.data/host_of_show.txt ]; then
cat ~/.data/host_of_show.txt
fi
echo -ne "\033[1;34mRecording on\033[5;33m:\033[0;0m\033[2;37m ";
# print date and time
date +"%A, %B %-d, %Y %r"
echo -ne "\033[0m\033[37m"
else
if [ -f ~/.data/banner.txt ]; then
cat ~/.data/banner.txt
fi
echo -ne "\033[0m\033[37m"
date +"%A, %B %-d, %Y %r"
fi
}
recording_banner
alias mysite='clear; cat ~/.data/mysite.txt; recording_banner'