Linux Lite Forums

Software - Support => Other => Topic started by: ROMAINPC on June 22, 2022, 05:36:16 AM

Title: Welcome message in bashrc
Post by: ROMAINPC on June 22, 2022, 05:36:16 AM
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.
Title: Re: Welcome message in bashrc
Post by: Jerry on June 25, 2022, 07:52:05 PM
This part of the Bash command is custom:

Code: [Select]
# 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.linuxliteos.com/forums/[/url] (Right click, Open Link)"
echo " "

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