Advertisement
BoogeyCZ

Untitled

Feb 17th, 2019
319
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. __prompt_command() {
  2. local EXIT="$?"
  3. PS1=""
  4.  
  5. local Reset='\[$(tput sgr0)\]'
  6. local Gray='\[\033[38;5;7m\]'
  7. local Green='\[\033[38;5;2m\]'
  8. local Yellow='\[\033[38;5;3m\]'
  9. local Blue='\[\033[38;5;12m\]'
  10. local Cyan='\[\033[38;5;14m\]'
  11. local Red='\[\033[38;5;9m\]'
  12.  
  13. local EXITColor="${Green}"
  14.  
  15. if [ $EXIT != 0 ]
  16. then
  17. EXITColor="${Red}"
  18. fi
  19.  
  20. PS1="[${Green}\u${Yellow}@${Blue}\h ${Cyan}\w${Reset}]${EXITColor}\$${Reset} "
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement