From 33722e3c1fca1bbc7752ef9ae864c72b6e95814d Mon Sep 17 00:00:00 2001 From: Iam54r1n4 Date: Sun, 26 Jan 2025 07:56:09 +0000 Subject: [PATCH] Change the server info output's format --- core/scripts/hysteria2/server_info.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/scripts/hysteria2/server_info.sh b/core/scripts/hysteria2/server_info.sh index 335dbed..3b76122 100644 --- a/core/scripts/hysteria2/server_info.sh +++ b/core/scripts/hysteria2/server_info.sh @@ -64,10 +64,10 @@ 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_download_human} downloaded" + echo "🔼 Uploaded Traffic: ${total_upload_human}" + echo "🔽 Downloaded Traffic: ${total_download_human}" total_traffic=$((total_upload + total_download)) total_traffic_human=$(convert_bytes $total_traffic) - echo "📊 ${total_traffic_human} total traffic" + echo "📊 Total Traffic: ${total_traffic_human}" fi