From f144b5aefa3807ecfddded019ae217e321367f05 Mon Sep 17 00:00:00 2001 From: Whispering Wind <151555003+ReturnFI@users.noreply.github.com> Date: Sun, 15 Dec 2024 00:42:04 +0330 Subject: [PATCH] Better perform with emojis --- core/scripts/hysteria2/server_info.sh | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/core/scripts/hysteria2/server_info.sh b/core/scripts/hysteria2/server_info.sh index 072002c..72b25c1 100644 --- a/core/scripts/hysteria2/server_info.sh +++ b/core/scripts/hysteria2/server_info.sh @@ -43,12 +43,12 @@ if [ "$online_user_count" == "null" ] || [ "$online_user_count" == "0" ]; then online_user_count=0 fi -echo "CPU Usage: $cpu_usage" -echo "Total RAM: ${total_ram}MB" -echo "Used RAM: ${used_ram}MB" -echo "Online Users: $online_user_count" +echo "πŸ“ˆ CPU Usage: $cpu_usage" +echo "πŸ“‹ Total RAM: ${total_ram}MB" +echo "πŸ’» Used RAM: ${used_ram}MB" +echo "πŸ‘₯ Online Users: $online_user_count" echo -echo "Total Traffic: " +echo "🚦Total Traffic: " if [ -f "$USERS_FILE" ]; then total_upload=0 @@ -64,7 +64,7 @@ if [ -f "$USERS_FILE" ]; then total_upload_human=$(convert_bytes $total_upload) total_download_human=$(convert_bytes $total_download) - echo "${total_upload_human} uploaded" + echo "πŸ”Ό${total_upload_human} uploaded" - echo "${total_download_human} downloaded" + echo "πŸ”½${total_download_human} downloaded" fi