Advertisement
Guest User

Untitled

a guest
Feb 7th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. # uncomment for a colored prompt, if the terminal has the capability; turned
  2. # off by default to not distract the user: the focus in a terminal window
  3. # should be on the output of commands, not on the prompt
  4. force_color_prompt=yes
  5.  
  6. # Add git branch if its present to PS1
  7. parse_git_branch() {
  8. git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* (.*)/(1)/'
  9. }
  10. if [ "$color_prompt" = yes ]; then
  11. PS1='${debian_chroot:+($debian_chroot)}[33[01;32m]u@h[33[00m]:[33[01;34m]w[33[01;31m]$(parse_git_branch)[33[00m]$ '
  12. else
  13. PS1='${debian_chroot:+($debian_chroot)}u@h:w$(parse_git_branch)$ '
  14. fi
  15. unset color_prompt force_color_prompt
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement