Linux Lite Forums
Welcome message in bashrc - Printable Version

+- Linux Lite Forums (https://www.freecinema2022.gq/forums)
+-- Forum: Software - Support (https://www.freecinema2022.gq/forums/forumdisplay.php?fid=5)
+--- Forum: Other (https://www.freecinema2022.gq/forums/forumdisplay.php?fid=20)
+--- Thread: Welcome message in bashrc (/showthread.php?tid=8369)



Welcome message in bashrc - ROMAINPC - 06-22-2022

Hello,


I recently had an issue with a program and the bash welcome message.
With a VScode extension which configure things by running a bash command and fetching the first few lines. This extension didn't work for me until I commented out the bashrc welcome message.

Maybe the extension is using the wrong method.
But I wanted to know if there were alternatives to display the welcome message? How does Ubuntu for example? Is there a conventional argument to indicate whether or not to display the message?


Best regards,
Romain.


Re: Welcome message in bashrc - Valtam - 06-25-2022

This part of the Bash command is custom:

Code:
# Linux Lite Custom Terminal
LLVER=$(awk '{print}' /etc/llver)

echo -e "Welcome to $LLVER ${USER}"
echo " "
date "+%A %d %B %Y, %T"
free -m | awk 'NR==2{printf "Memory Usage: %s/%sMB (%.2f%%)\n", $3,$2,$3*100/$2 }'
df -h | awk '$NF=="/"{printf "Disk Usage: %d/%dGB (%s)\n", $3,$2,$5}'
echo "Support - [url]https://www.freecinema2022.gq/forums/[/url] (Right click, Open Link)"
echo " "

Feel free to remove it or code it to your liking.