From f8a1228cfe5e6601f66da843cf573c19c1322e05 Mon Sep 17 00:00:00 2001 From: fisher Date: Tue, 5 Oct 2021 10:48:41 -0500 Subject: [PATCH 1/2] pfetch: change default PF_COL2 from 7 to 9 This commit changes the default PF_COL2 from 7 (white) to 9 (default terminal color). Fixes #147. --- pfetch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pfetch b/pfetch index e4b39e6..5980a36 100755 --- a/pfetch +++ b/pfetch @@ -150,7 +150,7 @@ log() { # Print the info data, color it and strip all leading whitespace # from the string. - esc_p SGR "3${PF_COL2-7}" + esc_p SGR "3${PF_COL2-9}" printf '%s' "$info" esc_p SGR 0 printf '\n' From f8093c71cf59f225b2aabb5df458800fc0aef311 Mon Sep 17 00:00:00 2001 From: fisher Date: Tue, 5 Oct 2021 10:53:52 -0500 Subject: [PATCH 2/2] docs: update default PF_COL2 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 96bef2e..f107a31 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,7 @@ PF_COL1=4 # Color of info data: # Default: unset (auto) # Valid: 0-9 -PF_COL2=7 +PF_COL2=9 # Color of title data: # Default: unset (auto)