Skip to content

Instantly share code, notes, and snippets.

@bjarneo
Created August 18, 2022 08:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bjarneo/2907131f405f1c860e4f9ed17dbafb3e to your computer and use it in GitHub Desktop.
Save bjarneo/2907131f405f1c860e4f9ed17dbafb3e to your computer and use it in GitHub Desktop.
HTB modified theme
# █ █ ▐▌ ▄█▄ █ ▄▄▄▄
# █▄▄█ ▀▀█ █▀▀ ▐▌▄▀ █ █▀█ █▀█ █▌▄█ ▄▀▀▄ ▀▄▀
# █ █ █▄█ █▄▄ ▐█▀▄ █ █ █ █▄▄ █▌▄█ ▀▄▄▀ █▀█
#
# P E N - T E S T I N G L A B S
# HTB ZSH theme
# This is modified from https://gist.github.com/MadLittleMods/2dc87634c6f3649852fba89b9b98e366#file-eric-zsh-theme
# Modifier: bjarneo
# Date: 08-18-22
# Custom Colors
green='82'
blue='21'
red='196'
gray='37'
CURRENT_BG='NONE'
() {
local LC_ALL="" LC_CTYPE="en_US.UTF-8"
SEGMENT_SEPARATOR_TOP='╭─['
SEGMENT_SEPARATOR_BOT='╰─'
}
# End the prompt, closing any open segments
prompt_end() {
if [[ $UID -eq 0 ]]; then
echo -n "%{%f%} %{%k%F{$red}%}#"
else
echo -n "%{%f%} %{%k%F{$green}%}$"
fi
CURRENT_BG=''
}
# Context: user@hostname (who am I and where am I)
prompt_context() {
if [[ "$USER" != "root" ]]; then
echo -n "%(!.%{%F{red}%}.)%{%k%F{white}%}$USER%{%k%F{$green}%}@%{%k%F{$gray}%}%m%{%k%F{$green}%}]"
else
echo -n "%(!.%{%F{red}%}.)%{%k%F{$red}%}$USER%{%k%F{$green}%}@%{%k%F{$blue}%}%m%{%k%F{$green}%}]"
fi
}
# Dir: current working directory
prompt_dir() {
echo -n '-[%{%k%F{white}%}%~%{%k%F{$green}%}]'
}
# Current k8s context
# You need the kubectx plugin
prompt_k8s_ctx() {
if kubectl ctx -c &>/dev/null; then
branch=$(kubectl ctx -c)
echo -n "%{%k%F{white}%}${branch}%{%k%F{$green}%}]-["
fi
}
# Current branch
prompt_git_branch() {
if git status &>/dev/null; then
branch=$(git rev-parse --abbrev-ref HEAD || echo "")
echo -n "%{%k%F{white}%}${branch}%{%k%F{$green}%}]-["
fi
}
# Virtualenv: current working virtualenv
prompt_virtualenv() {
local virtualenv_path="$VIRTUAL_ENV"
if [[ -n $virtualenv_path && -n $VIRTUAL_ENV_DISABLE_PROMPT ]]; then
echo -n "(`basename $virtualenv_path`)"
fi
}
# Status:
# - was there an error
# - am I root
# - are there background jobs?
prompt_status() {
local symbols
FAIL_CHAR=$'\u2622'
symbols=()
[[ $RETVAL -ne 0 ]] && symbols+="%{%F{$red}%}${FAIL_CHAR}"
[[ $UID -eq 0 ]] && symbols+="%{%F{$red}%}⚡"
[[ $(jobs -l | wc -l) -gt 0 ]] && symbols+="%{%F{cyan}%}⚙"
[[ -n "$symbols" ]] && echo -n "%{%F{$green}%}[$symbols%{%F{$green}%}]"
}
prompt_newline() {
if [[ -n $CURRENT_BG ]]; then
echo -n "%{%k%F{$CURRENT_BG}%}
%{%k%F{$green}%}$SEGMENT_SEPARATOR_BOT"
else
echo -n "%{%k%}"
fi
echo -n "%{%f%}"
CURRENT_BG=''
}
prompt_spacer() {
echo -n "%{%k%F{$green}%}]-["
}
prompt_header() {
echo -n "%{%k%F{$green}%}$SEGMENT_SEPARATOR_TOP"
}
## Main prompt
build_prompt() {
RETVAL=$?
prompt_header
prompt_git_branch
prompt_k8s_ctx
prompt_virtualenv
prompt_context
#prompt_dir
prompt_newline
prompt_status
prompt_end
}
PROMPT='%{%f%B%k%}$(build_prompt) '
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment