diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2015-08-14 22:35:23 +0200 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2015-08-14 22:35:23 +0200 |
commit | 393cc1208460274b27d2d98510b38cc0b75fae03 (patch) | |
tree | dc8407bc0ea535a839ca85a48e35b540638b6edb | |
parent | 71bf9f10e1e565fcf5a20d89ddda2181db8b97c2 (diff) | |
download | dotfiles-393cc1208460274b27d2d98510b38cc0b75fae03.tar.xz |
zsh: prompt: replace smiley with λ
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
-rw-r--r-- | zsh/prompt.zsh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/zsh/prompt.zsh b/zsh/prompt.zsh index a124d54..c83b2da 100644 --- a/zsh/prompt.zsh +++ b/zsh/prompt.zsh @@ -39,28 +39,28 @@ function virtualenv_prompt { if (( UID == 0 )); then PROMPT='$bg[light_red] $fg[white]%m%f %k$bg[white]$fg[light_red] %~ %f%k$(virtualenv_prompt) -$bg[light_blue]%B ^_^ %b%k ' +$bg[light_blue] λ %k ' else case $SHORTHOST in "theos") PROMPT='$bg[light_pink] $fg[white]%m%f %k$bg[white]$fg[light_pink] %~ %f%k$(virtualenv_prompt) -$bg[light_blue]%B ^_^ %b %k' +$bg[light_blue] λ %k ' ;; "lucifer") PROMPT='$bg[dark_gold] $fg[white]%m%f %k$bg[white]$fg[dark_gold] %~ %f%k$(virtualenv_prompt) -$bg[light_blue]%B ^_^ %b %k' +$bg[light_blue] λ %k ' ;; "nymeria") PROMPT='$bg[dark_green] $fg[white]%m%f %k$bg[white]$fg[dark_gold] %~ %f%k$(virtualenv_prompt) -$bg[light_blue]%B ^_^ %b %k' +$bg[light_blue] λ %k ' ;; *) PROMPT='$bg[black] $fg[white]%m%f %k$bg[white]$fg[black] %~ %f%k$(virtualenv_prompt) -$bg[light_blue]%B ^_^ %b %k' +$bg[light_blue] λ %k ' ;; esac |