From 5a7ba0c288501a53323c7db7396419d3536d2991 Mon Sep 17 00:00:00 2001 From: Sameer Rahmani Date: Mon, 2 Mar 2020 09:23:36 +0000 Subject: [PATCH] User name has been removed from the prompt of damn-mac --- themes/damn-mac.zsh-theme | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/themes/damn-mac.zsh-theme b/themes/damn-mac.zsh-theme index 8c6c227..7863d39 100644 --- a/themes/damn-mac.zsh-theme +++ b/themes/damn-mac.zsh-theme @@ -40,9 +40,9 @@ function spaces() { function user_prompt () { if [ $UID != 0 ]; then - echo "%F{007}$USER%F{002}> " + echo "%F{007}%F{002}> " else - echo "%F{001}$USER# " + echo "%F{001}# " fi }