diff --git a/i3blocks/cpu_monitor.sh b/i3blocks/cpu_monitor.sh
index 50a5178..d529f24 100755
--- a/i3blocks/cpu_monitor.sh
+++ b/i3blocks/cpu_monitor.sh
@@ -45,4 +45,4 @@ if [[ "$cpu_temp" != "N/A" ]]; then
fi
fi
-echo -e " CPU: ${cpu_temp}°C, Load: ${cpu_load}"
\ No newline at end of file
+echo -e " ${cpu_temp}°C, ${cpu_load}"
\ No newline at end of file
diff --git a/i3blocks/gpu_monitor.sh b/i3blocks/gpu_monitor.sh
index fb82e32..515686c 100755
--- a/i3blocks/gpu_monitor.sh
+++ b/i3blocks/gpu_monitor.sh
@@ -59,7 +59,7 @@ else
fi
# Output<
-echo -e " GPU: ${gpu_temp}, Load: ${gpu_load}%"
+echo -e " ${gpu_temp}, ${gpu_load}%"
echo
echo "#FFFFFF" # Default color for fallback (ignored if markup is enabled)
diff --git a/i3blocks/network_monitor.sh b/i3blocks/network_monitor.sh
index 7693d20..9639ef0 100755
--- a/i3blocks/network_monitor.sh
+++ b/i3blocks/network_monitor.sh
@@ -75,5 +75,5 @@ rx_rate_human=$(numfmt --to=iec --suffix=B/s $total_rx_rate)
tx_rate_human=$(numfmt --to=iec --suffix=B/s $total_tx_rate)
# Output the result with fixed width
-printf " DL: %-8s UL: %-8s\n" "$rx_rate_human" "$tx_rate_human"
+printf " %-7s %-7s\n" "$rx_rate_human" "$tx_rate_human"
echo "#50FA7B"
\ No newline at end of file