From 9908c246f7855de6951e8564d87301efbac63e8c Mon Sep 17 00:00:00 2001 From: René 'Necoro' Neumann Date: Tue, 3 May 2011 11:58:44 +0200 Subject: Gentoo zsh prompt --- .zsh/functions/prompt_gentoo_setup | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .zsh/functions/prompt_gentoo_setup (limited to '.zsh') diff --git a/.zsh/functions/prompt_gentoo_setup b/.zsh/functions/prompt_gentoo_setup new file mode 100644 index 0000000..0d071e9 --- /dev/null +++ b/.zsh/functions/prompt_gentoo_setup @@ -0,0 +1,33 @@ +# gentoo prompt theme + +prompt_gentoo_help () { + cat <<'EOF' +This prompt is color-scheme-able. You can invoke it thus: + + prompt gentoo [ [ []]] + +EOF +} + +prompt_gentoo_setup () { + prompt_gentoo_prompt=${1:-'blue'} + prompt_gentoo_user=${2:-'green'} + prompt_gentoo_root=${3:-'red'} + + if [ "$USER" = 'root' ] + then + base_prompt="%B%F{$prompt_gentoo_root}%m%k " + else + base_prompt="%B%F{$prompt_gentoo_user}%n@%m%k " + fi + post_prompt="%b%f%k" + + #setopt noxtrace localoptions + + path_prompt="%B%F{$prompt_gentoo_prompt}%1~" + PS1="$base_prompt$path_prompt %# $post_prompt" + PS2="$base_prompt$path_prompt %_> $post_prompt" + PS3="$base_prompt$path_prompt ?# $post_prompt" +} + +prompt_gentoo_setup "$@" -- cgit v1.2.3-70-g09d2