aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2015-08-14 22:35:23 +0200
committerJohannes Löthberg <johannes@kyriasis.com>2015-08-14 22:35:23 +0200
commit393cc1208460274b27d2d98510b38cc0b75fae03 (patch)
treedc8407bc0ea535a839ca85a48e35b540638b6edb
parent71bf9f10e1e565fcf5a20d89ddda2181db8b97c2 (diff)
downloaddotfiles-393cc1208460274b27d2d98510b38cc0b75fae03.tar.xz
zsh: prompt: replace smiley with λ
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
-rw-r--r--zsh/prompt.zsh10
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