Created
June 11, 2013 20:29
-
-
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 ;)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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 | |
| 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