From b5452b44c08fffcfe15f856c6e4fedf57155c50b Mon Sep 17 00:00:00 2001
From: Salt <rehashedsalt@cock.li>
Date: Mon, 28 Sep 2020 15:28:14 -0500
Subject: [PATCH] Polish up status descriptions

---
 firestarter | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/firestarter b/firestarter
index c5d83b6..2e0f471 100755
--- a/firestarter
+++ b/firestarter
@@ -249,11 +249,11 @@ fsstatus() {
 			elif ! [ "$pid" -gt 0 ] 2> /dev/null; then
 				# PID is not a number greater than 0
 				status="\e[31m○\e[0m"
-				description="Invalid PID ($pid)"
+				description="\e[31mInvalid PID\e[0m ($pid)"
 			elif ! [ -d "/proc/$pid" ]; then
 				# PID is valid, but does not exist in /proc (i.e. is dead)
 				status="\e[31m●\e[0m"
-				description="Dead (PID $pid)"
+				description="\e[31mDead\e[0m (PID $pid)"
 			else
 				# PID is good, time for secondary validation
 				status="\e[32m●\e[0m"