Config File Collection
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

prompt_kali.zsh 3.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. # set variable identifying the chroot you work in (used in the prompt below)
  2. if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
  3. debian_chroot=$(cat /etc/debian_chroot)
  4. fi
  5. # set a fancy prompt (non-color, unless we know we "want" color)
  6. case "$TERM" in
  7. xterm-color|*-256color) color_prompt=yes;;
  8. esac
  9. # uncomment for a colored prompt, if the terminal has the capability; turned
  10. # off by default to not distract the user: the focus in a terminal window
  11. # should be on the output of commands, not on the prompt
  12. force_color_prompt=yes
  13. if [ -n "$force_color_prompt" ]; then
  14. if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
  15. # We have color support; assume it's compliant with Ecma-48
  16. # (ISO/IEC-6429). (Lack of such support is extremely rare, and such
  17. # a case would tend to support setf rather than setaf.)
  18. color_prompt=yes
  19. else
  20. color_prompt=
  21. fi
  22. fi
  23. configure_prompt() {
  24. prompt_symbol='%F{cyan}@%B%F{%(#.red.blue)}'
  25. # Skull emoji for root terminal
  26. [ "$EUID" -eq 0 ] && prompt_symbol='%F{white}☠%B%F{%(#.red.blue)}'
  27. case "$PROMPT_ALTERNATIVE" in
  28. twoline)
  29. PROMPT=$'%F{%(#.blue.green)}┌──${debian_chroot:+($debian_chroot)─}${VIRTUAL_ENV:+($(basename $VIRTUAL_ENV))─}(%B%F{%(#.red.blue)}%n'$prompt_symbol$'%m%b%F{%(#.blue.green)})-[%B%F{reset}%(6~.%-1~/…/%4~.%5~)%b%F{%(#.blue.green)}]\n`giti -n`%F{%(#.blue.green)}└─%B%(#.%F{red}#.%F{blue}$)%b%F{reset} '
  30. # Right-side prompt with exit codes and background processes
  31. RPROMPT=$'%(?.. %? %F{red}%B⚡%b%F{reset})%(1j. %j %F{yellow}%B⚙%b%F{reset}.)'
  32. ;;
  33. oneline)
  34. PROMPT=$'${debian_chroot:+($debian_chroot)}${VIRTUAL_ENV:+($(basename $VIRTUAL_ENV))}%B%F{%(#.red.blue)}%n@%m%b%F{reset}:%B%F{%(#.blue.green)}%~%b%F{reset}%(#.#.$) '
  35. RPROMPT=
  36. ;;
  37. backtrack)
  38. PROMPT=$'${debian_chroot:+($debian_chroot)}${VIRTUAL_ENV:+($(basename $VIRTUAL_ENV))}%B%F{red}%n@%m%b%F{reset}:%B%F{blue}%~%b%F{reset}%(#.#.$) '
  39. RPROMPT=
  40. ;;
  41. esac
  42. unset prompt_symbol
  43. }
  44. # The following block is surrounded by two delimiters.
  45. # These delimiters must not be modified. Thanks.
  46. # START KALI CONFIG VARIABLES
  47. PROMPT_ALTERNATIVE=twoline
  48. NEWLINE_BEFORE_PROMPT=yes
  49. # STOP KALI CONFIG VARIABLES
  50. if [ "$color_prompt" = yes ]; then
  51. # override default virtualenv indicator in prompt
  52. VIRTUAL_ENV_DISABLE_PROMPT=1
  53. configure_prompt
  54. else
  55. PROMPT='${debian_chroot:+($debian_chroot)}%n@%m:%~%(#.#.$) '
  56. fi
  57. unset color_prompt force_color_prompt
  58. toggle_oneline_prompt(){
  59. if [ "$PROMPT_ALTERNATIVE" = oneline ]; then
  60. PROMPT_ALTERNATIVE=twoline
  61. else
  62. PROMPT_ALTERNATIVE=oneline
  63. fi
  64. configure_prompt
  65. zle reset-prompt
  66. }
  67. zle -N toggle_oneline_prompt
  68. bindkey ^P toggle_oneline_prompt
  69. # If this is an xterm set the title to user@host:dir
  70. case "$TERM" in
  71. xterm*|rxvt*|Eterm|aterm|kterm|gnome*|alacritty)
  72. TERM_TITLE=$'\e]0;${debian_chroot:+($debian_chroot)}${VIRTUAL_ENV:+($(basename $VIRTUAL_ENV))}%n@%m: %~\a'
  73. ;;
  74. *)
  75. ;;
  76. esac
  77. precmd() {
  78. # Print the previously configured title
  79. print -Pnr -- "$TERM_TITLE"
  80. # Print a new line before the prompt, but only if it is not the first line
  81. if [ "$NEWLINE_BEFORE_PROMPT" = yes ]; then
  82. if [ -z "$_NEW_LINE_BEFORE_PROMPT" ]; then
  83. _NEW_LINE_BEFORE_PROMPT=1
  84. else
  85. print ""
  86. fi
  87. fi
  88. }