]> arthur.barton.de Git - ax-zsh.git/blobdiff - themes/axemoji.axzshtheme
Correctly test XDG_CACHE_HOME for writability for "stamp files"
[ax-zsh.git] / themes / axemoji.axzshtheme
index 8fc4877379c6df777765cf97b12237ff8ed2eafa..9333e0ecbf660fbcf0b92ab8f2d634e4b9bf383d 100644 (file)
@@ -1,5 +1,5 @@
 # AX-ZSH: Alex' Modular ZSH Configuration
-# axemoji.axzshtheme: More fancy AX-ZSH Theme
+# axemoji.axzshtheme: Fancier AX-ZSH Theme
 
 ZSH_THEME_PROMPT_PREFIX_SPACING=" "
 ZSH_THEME_PROMPT_SUFFIX_SPACING=" "
@@ -13,23 +13,33 @@ if axzsh_is_utf_terminal; then
        else
                system_emoji="🍀"
        fi
-       [[ -n "$VTE_VERSION" ]] \
+       axzsh_is_widechar_terminal \
                && emoji_spacing="" \
                || emoji_spacing=" "
 
        ZSH_THEME_VCS_PROMPT_CLEAN="👌$emoji_spacing"
        ZSH_THEME_VCS_PROMPT_DIRTY="👻$emoji_spacing"
 
-       # Prompt on right side
-       RPS1="%(?..%{$fg_no_bold[red]%}❌$emoji_spacing%? ↵%{$reset_color%})"
+       # Primary prompt on the right-hand side.
+       RPS1="%(?..%{$fg_no_bold[red]%}🤔$emoji_spacing %?↵%{$reset_color%})"
 else
-       # Non-UTF8 terminal
+       # Non-UTF8 or incompatible terminal
        system_emoji=">"
        emoji_spacing=""
 
+       # Primary prompt on the right-hand side.
        RPS1="%(?..%{$fg_no_bold[red]%}<%?>%{$reset_color%})"
 fi
 
-PS1="${system_emoji}${emoji_spacing} $(ax_logname_prompt_yn)$(ax_hostname_prompt_yn)%B%2~%b"'$(ax_vcs_prompt)'"$(ax_prompt)"
+axzsh_logname_prompt_functions=($axzsh_logname_prompt_functions axzsh_logname_prompt_root)
+axzsh_hostname_prompt_functions=($axzsh_hostname_prompt_functions axzsh_hostname_prompt_root)
+
+# The primary prompt string, printed before a command is read.
+PS1="${system_emoji}${emoji_spacing} $(axzsh_logname_prompt_yn)$(axzsh_hostname_prompt_yn)%B%2~%b"'$(axzsh_vcs_prompt)'"$(axzsh_prompt)"
+
+# Default execution trace prompt.
+PS4="$fg_no_bold[yellow]->$reset_color "
+# This prompt is compatible with sh(1) and bash(1), too, so export it!
+export PS4
 
 unset system_emoji emoji_spacing