1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-08 12:01:21 +02:00
zsh/Functions/Prompts/prompt_redhat_setup
1999-10-15 09:38:21 +00:00

13 lines
296 B
Text

# Converted to zsh prompt theme by bash2zshprompt, written by <adam@spiers.net>
# Red Hat Default Prompt
# Styled like the default prompt in Red Hat 5.1
#
prompt_redhat_setup () {
PS1="[%n@%m %1~]\\$ "
PS2="> "
precmd () { setopt promptsubst }
preexec () { }
}
prompt_redhat_setup "$@"