aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordylan <dylan.araps@gmail.com>2021-10-06 07:31:18 +0300
committerGitHub <noreply@github.com>2021-10-06 07:31:18 +0300
commitc574b145696c514ac01f0b490c5a4c6cc9bbfb75 (patch)
tree4f771fa95b67adf1bfb781b1bc17396286c3abb5
parentd250dcaff6b8e277184feda25db57d37c2600812 (diff)
parentf8093c71cf59f225b2aabb5df458800fc0aef311 (diff)
downloadpfetch-c574b145696c514ac01f0b490c5a4c6cc9bbfb75.tar.gz
Merge pull request #160 from tactlessfish/fix-default-col2
Fix default PF_COL2, closes #147
-rw-r--r--README.md2
-rwxr-xr-xpfetch2
2 files changed, 2 insertions, 2 deletions
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)
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'