Use gentoo zsh prompt in common role.
This commit is contained in:
parent
942a3d6724
commit
cb54f03a2a
@ -10,4 +10,4 @@ zstyle ':completion::complete:*' use-cache 1
|
|||||||
# promt
|
# promt
|
||||||
autoload -U promptinit
|
autoload -U promptinit
|
||||||
promptinit
|
promptinit
|
||||||
#prompt gentoo
|
prompt gentoo
|
||||||
|
33
roles/common/files/prompt_gentoo_setup
Normal file
33
roles/common/files/prompt_gentoo_setup
Normal file
@ -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 [<promptcolor> [<usercolor> [<rootcolor>]]]
|
||||||
|
|
||||||
|
EOF
|
||||||
|
}
|
||||||
|
|
||||||
|
prompt_gentoo_setup () {
|
||||||
|
local prompt_gentoo_prompt=${1:-'blue'}
|
||||||
|
local prompt_gentoo_user=${2:-'green'}
|
||||||
|
local prompt_gentoo_root=${3:-'red'}
|
||||||
|
|
||||||
|
if [ "$USER" = 'root' ]
|
||||||
|
then
|
||||||
|
local base_prompt="%B%F{$prompt_gentoo_root}%m%k "
|
||||||
|
else
|
||||||
|
local base_prompt="%B%F{$prompt_gentoo_user}%n@%m%k "
|
||||||
|
fi
|
||||||
|
local post_prompt="%b%f%k"
|
||||||
|
|
||||||
|
#setopt noxtrace localoptions
|
||||||
|
|
||||||
|
local path_prompt="%B%F{$prompt_gentoo_prompt}%1~"
|
||||||
|
typeset -g PS1="$base_prompt$path_prompt %# $post_prompt"
|
||||||
|
typeset -g PS2="$base_prompt$path_prompt %_> $post_prompt"
|
||||||
|
typeset -g PS3="$base_prompt$path_prompt ?# $post_prompt"
|
||||||
|
}
|
||||||
|
|
||||||
|
prompt_gentoo_setup "$@"
|
@ -28,6 +28,7 @@
|
|||||||
with_items:
|
with_items:
|
||||||
- { src: '.zshrc', dest: '/root/.zshrc' }
|
- { src: '.zshrc', dest: '/root/.zshrc' }
|
||||||
- { src: '.zshrc.local', dest: '/root/.zshrc.local' }
|
- { src: '.zshrc.local', dest: '/root/.zshrc.local' }
|
||||||
|
- { src: 'prompt_gentoo_setup', dest: '/usr/share/zsh/functions/Prompts/prompt_gentoo_setup' }
|
||||||
|
|
||||||
- name: Set shell for root user
|
- name: Set shell for root user
|
||||||
user: name=root shell=/bin/zsh
|
user: name=root shell=/bin/zsh
|
||||||
|
@ -24,3 +24,4 @@
|
|||||||
with_items:
|
with_items:
|
||||||
- { src: '.zshrc', dest: '/root/.zshrc' }
|
- { src: '.zshrc', dest: '/root/.zshrc' }
|
||||||
- { src: '.zshrc.local', dest: '/root/.zshrc.local' }
|
- { src: '.zshrc.local', dest: '/root/.zshrc.local' }
|
||||||
|
- { src: 'prompt_gentoo_setup', dest: '/usr/local/share/zsh/5.2/functions/Prompts/prompt_gentoo_setup' }
|
||||||
|
Loading…
Reference in New Issue
Block a user