Made "sudo" group admin color

This commit is contained in:
ayakael 2018-08-26 20:16:49 -08:00
parent 65611493e9
commit 188269046b
No known key found for this signature in database
GPG key ID: 575626A4AE5F4026

2
zshps
View file

@ -20,7 +20,7 @@
if [[ ${USER} = "root" ]]; then
USER_PS="%F{red}%n%f"
# Admin
elif groups | grep -qw prod; then
elif groups | grep -qw sudo; then
USER_PS="%F{yellow}%n%f"
# Normal
else