Skip to content

Commit

Permalink
removed bold where not required
Browse files Browse the repository at this point in the history
  • Loading branch information
dgibbs64 committed Oct 3, 2023
1 parent 6054dc1 commit d8a3466
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lgsm/modules/info_messages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -126,30 +126,30 @@ fn_info_message_server_resource() {
echo -e "${bold}${lightyellow}Server Resource${default}"
fn_messages_separator
{
echo -e "${bold}${lightyellow}CPU\t${default}"
echo -e "${lightyellow}CPU\t${default}"
echo -e "${lightblue}Model:\t${default}${cpumodel}"
echo -e "${lightblue}Cores:\t${default}${cpucores}"
echo -e "${lightblue}Frequency:\t${default}${cpufreqency}MHz"
echo -e "${lightblue}Avg Load:\t${default}${load}"
} | column -s $'\t' -t
echo -e ""
{
echo -e "${bold}${lightyellow}Memory\t${default}"
echo -e "${lightyellow}Memory\t${default}"
echo -e "${lightblue}Mem:\t${lightblue}total\tused\tfree\tcached\tavailable${default}"
echo -e "${lightblue}Physical:\t${default}${physmemtotal}\t${physmemused}\t${physmemfree}\t${physmemcached}\t${physmemavailable}${default}"
echo -e "${lightblue}Swap:\t${default}${swaptotal}\t${swapused}\t${swapfree}${default}"
} | column -s $'\t' -t
echo -e ""
{
echo -e "${bold}${lightyellow}Storage${default}"
echo -e "${lightyellow}Storage${default}"
echo -e "${lightblue}Filesystem:\t${default}${filesystem}"
echo -e "${lightblue}Total:\t\t${default}${totalspace}"
echo -e "${lightblue}Used:\t\t${default}${usedspace}"
echo -e "${lightblue}Available:\t${default}${availspace}"
} | column -s $'\t' -t
echo -e ""
{
echo -e "${bold}${lightyellow}Network${default}"
echo -e "${lightyellow}Network${default}"
if [ -n "${netint}" ]; then
echo -e "${lightblue}Interface:\t${default}${netint}"
fi
Expand Down Expand Up @@ -197,7 +197,7 @@ fn_info_message_gameserver_resource() {
} | column -s $'\t' -t
echo -e ""
{
echo -e "${bold}${lightyellow}Storage${default}"
echo -e "${lightyellow}Storage${default}"
echo -e "${lightblue}Total:\t${default}${rootdirdu}"
echo -e "${lightblue}Serverfiles:\t${default}${serverfilesdu}"
if [ -d "${backupdir}" ]; then
Expand Down

0 comments on commit d8a3466

Please sign in to comment.