You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

168 lines
5.7 KiB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
  1. # ~/.bashrc: executed by bash(1) for non-login shells.
  2. # If not running interactively, don't do anything
  3. case $- in
  4. *i*) ;;
  5. *) return;;
  6. esac
  7. # don't put duplicate lines or lines starting with space in the history.
  8. HISTCONTROL=ignoreboth
  9. # append to the history file, don't overwrite it
  10. shopt -s histappend
  11. # for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
  12. HISTSIZE=1000
  13. HISTFILESIZE=2000
  14. # check the window size after each command and, if necessary,
  15. # update the values of LINES and COLUMNS.
  16. shopt -s checkwinsize
  17. # make less more friendly for non-text input files, see lesspipe(1)
  18. [ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
  19. # set a fancy prompt (non-color, unless we know we "want" color)
  20. case "$TERM" in
  21. xterm-color|*-256color)
  22. color_prompt=yes
  23. export COLOR_OPTIONS='--color=auto'
  24. ;;
  25. esac
  26. export LS_COLORS="rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:"
  27. # enable programmable completion features (you don't need to enable
  28. # this, if it's already enabled in /etc/bash.bashrc and /etc/profile
  29. # sources /etc/bash.bashrc).
  30. if ! shopt -oq posix; then
  31. if [ -f /usr/share/bash-completion/bash_completion ]; then
  32. . /usr/share/bash-completion/bash_completion
  33. elif [ -f /etc/bash_completion ]; then
  34. . /etc/bash_completion
  35. fi
  36. fi
  37. __prompt_command() {
  38. local EXIT="$?" # This needs to be first
  39. local R='\[\e[0m\]'
  40. local Red='\[\e[1;31m\]'
  41. local Gre='\[\e[1;32m\]'
  42. local Yel='\[\e[1;33m\]'
  43. local Ora='\[\e[0;33m\]'
  44. local Blu='\[\e[1;34m\]'
  45. local Cya='\[\e[1;36m\]'
  46. local Mag='\[\e[1;95m\]'
  47. local Gra='\[\e[1;30m\]'
  48. PS1=''
  49. if [[ $container == 'lxc' ]];then
  50. PS1+="${Gra}[LXC:${R}"
  51. local host=$container_hostname
  52. case ${host:0:4} in
  53. 'beta')
  54. PS1+="${Yel}";;
  55. 'prod')
  56. PS1+="${Red}";;
  57. *)
  58. esac
  59. PS1+="${host}${Gra}] "
  60. fi
  61. if [ `id -u` -eq 0 ]; then
  62. PS1+="${Yel}\u${R}"
  63. PROMPT='$'
  64. else
  65. PS1+="$Gre\u$R"
  66. PROMPT='#'
  67. fi
  68. PS1+="${Gra}@"
  69. case ${HOSTNAME:0:4} in
  70. 'beta')
  71. PS1+="${Yel}";;
  72. 'prod')
  73. PS1+="${Red}";;
  74. *)
  75. PS1+="${R}";;
  76. esac
  77. PS1+="\h"
  78. PS1+=" ${Cya}\w${R}"
  79. if hash git 2>&-; then
  80. # git command exists
  81. if git rev-parse --git-dir > /dev/null 2>&1; then
  82. # current dir is version controlled
  83. local branch=$(git branch 2> /dev/null | grep -e ^* | cut -d ' ' -f2)
  84. PS1+=" ${R}[${Mag}${branch}${R}|"
  85. local dirty=$(git status -s | wc -l)
  86. if [[ $dirty -ne 0 ]]; then
  87. PS1+="${Mag}…$dirty"
  88. else
  89. local ahead=$(git rev-list --branches --not --remotes |wc -l)
  90. if [[ $ahead -ne 0 ]]; then
  91. PS1+="${Blu}↑${ahead}"
  92. else
  93. tag_release=`git describe --exact-match --tags $(git log -n1 --pretty='%h') 2> /dev/null`
  94. if [[ -z $tag_release ]];then
  95. PS1+="${Red}✔"
  96. else
  97. PS1+="${Gre}✔${R}|${Blu}${tag_release}"
  98. fi
  99. fi
  100. fi
  101. PS1+="${R}]"
  102. fi
  103. fi
  104. if [ $EXIT != 0 ]; then
  105. PS1+="$Mag" # Add red if exit code non 0
  106. else
  107. PS1+="$Gra"
  108. fi
  109. PS1+=" $PROMPT ${R}"
  110. }
  111. PROMPT_COMMAND='__prompt_command' # Func to gen PS1 after CMDs
  112. DEBIAN_BASH_DIR=/opt/debian-bash
  113. # You may uncomment the following lines if you want `ls' to be colorized:
  114. alias ls='ls $COLOR_OPTIONS'
  115. alias ll='ls $COLOR_OPTIONS -l'
  116. alias lh='ls $COLOR_OPTIONS -lh'
  117. alias la='ls $COLOR_OPTIONS -lA'
  118. alias ltr='ls $COLOR_OPTIONS -ltrh'
  119. alias l=ls
  120. alias cd..='cd ..'
  121. alias ..=cd..
  122. alias grep='grep $COLOR_OPTIONS'
  123. alias fgrep='fgrep $COLOR_OPTIONS'
  124. alias egrep='egrep -$COLOR_OPTIONS'
  125. # Alias definitions.
  126. # You may want to put all your additions into a separate file like
  127. # ~/.bash_aliases, instead of adding them here directly.
  128. # See /usr/share/doc/bash-doc/examples in the bash-doc package.
  129. if [ -f ~/.bash_aliases ]; then
  130. . ~/.bash_aliases
  131. fi
  132. PATH=$PATH:/opt/debian-bash/tools
  133. if [ -d /opt/debian-server ]; then
  134. PATH=$PATH:/opt/debian-server/tools
  135. fi