From f7c9eff014d7ce471323b45bf9bb171ffb7e07a1 Mon Sep 17 00:00:00 2001 From: Cameron Steffen Date: Sat, 7 Mar 2020 01:57:35 -0600 Subject: [PATCH] Improve colors preview one-liner --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 06de3381..09fb25ce 100644 --- a/README.md +++ b/README.md @@ -849,7 +849,7 @@ Type `source ~/.p10k.zsh` to apply your changes to the current Zsh session. To see how different colors look in your terminal, run the following command: ```zsh -for i in {0..255}; do print -Pn "%K{$i} %k%F{$i}${(l:3::0:)i}%f " ${${(M)$((i%8)):#7}:+$'\n'}; done +for i in {0..255}; do print -Pn "%K{$i} %F{0}${(l:3::0:)i}%f %k"${${(M)$((i%6)):#3}:+$'\n'}; done ``` ### Why does Powerlevel10k spawn extra processes?