Skip to content

Instantly share code, notes, and snippets.

@drxzcl
Created June 11, 2013 20:29
Show Gist options
  • Select an option

  • Save drxzcl/5760355 to your computer and use it in GitHub Desktop.

Select an option

Save drxzcl/5760355 to your computer and use it in GitHub Desktop.
Modified from http://ubuntuforums.org/showthread.php?t=1158660 to look less lame ;)
# Styled like the default prompt in Ubuntu 9.04 Jaunty
# Cloned by Steve Gargan
#
prompt_ubuntu_setup ()
{
local userhost=${1:-'green'}
local cwd=${2:-'blue'}
PS1="%B%F{$userhost}%n@%m%F{$cwd%}:%~%# %b%k%f"
PS2="> "
RPS1=""
prompt_opts=( cr percent )
}
prompt_ubuntu_preview () {
if (( ! $#* )); then
prompt_preview_theme ubuntu
print
prompt_preview_theme ubuntu red white
else
prompt_preview_theme ubuntu "$@"
fi
}
prompt_ubuntu_setup "$@"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment