mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-19 13:33:52 +01:00
14 lines
264 B
Plaintext
14 lines
264 B
Plaintext
|
# Converted to zsh prompt theme by bash2zshprompt, written by <adam@spiers.net>
|
||
|
# SuSE Default Prompt
|
||
|
# Styled like the default prompt in SuSE 5.2
|
||
|
#
|
||
|
prompt_suse_setup () {
|
||
|
PS1="%n@%m:%~/ > "
|
||
|
PS2="> "
|
||
|
|
||
|
precmd () { }
|
||
|
preexec () { }
|
||
|
}
|
||
|
|
||
|
prompt_suse_setup "$@"
|