From ff8366f091df145dae6570f02f6469c53926fab3 Mon Sep 17 00:00:00 2001 From: Franscobec Date: Sun, 18 Jan 2026 20:39:59 -0500 Subject: [PATCH] Fix colors not working in console messages --- scripts/togglenetworking.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/togglenetworking.sh b/scripts/togglenetworking.sh index 033be37..bed99f7 100644 --- a/scripts/togglenetworking.sh +++ b/scripts/togglenetworking.sh @@ -7,8 +7,8 @@ C_YELLOW="\033[38;5;226m" if systemctl is-active --quiet NetworkManager; then sudo systemctl stop NetworkManager - echo "${C_YELLOW}Networking is now ${F_BOLD}${C_RED}inactive${NO_FORMAT}" + echo -e "${C_YELLOW}Networking is now ${F_BOLD}${C_RED}inactive${NO_FORMAT}" else sudo systemctl start NetworkManager - echo "${C_YELLOW}Networking is now ${F_BOLD}${C_GREEN}active${NO_FORMAT}" + echo -e "${C_YELLOW}Networking is now ${F_BOLD}${C_GREEN}active${NO_FORMAT}" fi