From e2324e420f0ef1e365fb5fc160152e62b30d6395 Mon Sep 17 00:00:00 2001
From: Salt <rehashedsalt@cock.li>
Date: Mon, 24 Aug 2020 10:02:14 -0500
Subject: [PATCH] .profile: Fix naughty words in PS1

---
 .profile | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/.profile b/.profile
index 587a639d..f0721a68 100755
--- a/.profile
+++ b/.profile
@@ -355,16 +355,16 @@ _ps1bash() {
 	fi
 	# Show read-only status in certain directories
 	if [ "$UID" = 0 ]; then
-		# Fuck you I'm root
+		# Root gets the usual "#" prompt
 		prompt="${fg_red}#${r}"
 	elif ! [ -d "$PWD" ]; then
-		# What the fuck happened to my directory
+		# Something very bad has happened to our PWD, probably got deleted
 		prompt="${bg_red}${fg_black}!${r}"
 	elif ! [ -r "$PWD" ]; then
-		# Can't read is worst case
+		# Guess we lost privileges
 		prompt="${fg_red}"'$'"${r}"
 	elif ! [ -x "$PWD" ]; then
-		# Can read it but can't search it is weird but also bad
+		# Missing execution perms
 		if [ -w "$PWD" ]; then
 			# Fixable
 			prompt="${bg_blue}${fg_black}"'$'"${r}"