From a26f997199d7e2ed274378925f0f5e98ebe03881 Mon Sep 17 00:00:00 2001 From: Gnarwhal Date: Tue, 30 Jul 2024 23:17:05 +0000 Subject: [PATCH] Show full hostname instead of to first . --- .zsh/p10k_themes/purple.zsh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.zsh/p10k_themes/purple.zsh b/.zsh/p10k_themes/purple.zsh index cca173d..b68bb62 100644 --- a/.zsh/p10k_themes/purple.zsh +++ b/.zsh/p10k_themes/purple.zsh @@ -981,11 +981,11 @@ typeset -g POWERLEVEL9K_CONTEXT_BACKGROUND=0 # Context format when running with privileges: user@hostname. - typeset -g POWERLEVEL9K_CONTEXT_ROOT_TEMPLATE='%n@%m' + typeset -g POWERLEVEL9K_CONTEXT_ROOT_TEMPLATE='%n@%M' # Context format when in SSH without privileges: user@hostname. - typeset -g POWERLEVEL9K_CONTEXT_{REMOTE,REMOTE_SUDO}_TEMPLATE='%n@%m' + typeset -g POWERLEVEL9K_CONTEXT_{REMOTE,REMOTE_SUDO}_TEMPLATE='%n@%M' # Default context format (no privileges, no SSH): user@hostname. - typeset -g POWERLEVEL9K_CONTEXT_TEMPLATE='%n@%m' + typeset -g POWERLEVEL9K_CONTEXT_TEMPLATE='%n@%M' # Don't show context unless running with privileges or in SSH. # Tip: Remove the next line to always show context.