add zsh_colors script

This commit is contained in:
Václav Uruba 2021-04-24 15:01:42 +02:00
parent 1ad99f4f8e
commit ee9cc7205b
Signed by: uruba
GPG Key ID: 0059B34D61727BB0

7
scripts/scripts/zsh_colors Executable file
View File

@ -0,0 +1,7 @@
#!/bin/zsh
for c in {0..7}; do
b=$((c+8))
print -P - "%F{$c}$c%f -> %F{$b}$b%f"
done