From 4bc6207076a69da67644d2128586d781873f895e Mon Sep 17 00:00:00 2001 From: acicchetti Date: Tue, 19 Mar 2019 15:22:32 -0400 Subject: [PATCH] Different elixir symbol --- zsh/zshrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/zsh/zshrc b/zsh/zshrc index 1126b30..c8efc8c 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -53,7 +53,7 @@ antigen apply # custom functions for powerlevel9k -POWERLEVEL9K_ELIXIR_ICON=$'🥃' +POWERLEVEL9K_ELIXIR_ICON=$'💧' POWERLEVEL9K_PYTHON_ICON=$'\U1F40D' prompt_custom_virtualenv() { @@ -68,7 +68,7 @@ POWERLEVEL9K_CUSTOM_VIRTUALENV="prompt_custom_virtualenv" prompt_asdf_elixir() { if [ $commands[asdf] ]; then - ELIXIR_ICON=$'🥃' + ELIXIR_ICON=$'💧' local asdf_global_conf="$HOME/.tool-versions" local version_regex="s/^\([.0-9]*\).*/\1/p" local config_regex="s/.*(set by \(.*\))/\1/p" @@ -81,7 +81,7 @@ prompt_asdf_elixir() { local erlang_current_version="$(echo $erlang_current | sed -n $version_regex)" local erlang_current_conf="$(echo $erlang_current | sed -n $config_regex)" if [[ "${asdf_global_conf}" != "${elixir_current_conf}" || "${asdf_global_conf}" != "${erlang_current_conf}" ]]; then - echo -n "🥃 $elixir_current_version (on Erlang $erlang_current_version)" + echo -n "💧 $elixir_current_version (on Erlang $erlang_current_version)" fi fi }