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.

173 lines
5.8 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
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=10000
  13. HISTFILESIZE=20000
  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:*.sql.gz=01;35:*.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. # set xterm title
  49. echo -ne "\033]0;${USER}@${HOSTNAME}: ${PWD}\007"
  50. PS1=''
  51. if [[ $container == 'lxc' ]];then
  52. PS1+="${Gra}[LXC:${R}"
  53. local host=$container_hostname
  54. case ${host:0:4} in
  55. 'beta')
  56. PS1+="${Yel}";;
  57. 'prod')
  58. PS1+="${Red}";;
  59. *)
  60. esac
  61. PS1+="${host}${Gra}] "
  62. fi
  63. if [ `id -u` -eq 0 ]; then
  64. PS1+="${Yel}\u${R}"
  65. PROMPT='$'
  66. else
  67. PS1+="$Gre\u$R"
  68. PROMPT='#'
  69. fi
  70. PS1+="${Gra}@"
  71. case ${HOSTNAME:0:4} in
  72. 'beta')
  73. PS1+="${Yel}";;
  74. 'prod')
  75. PS1+="${Red}";;
  76. *)
  77. PS1+="${R}";;
  78. esac
  79. PS1+="\h"
  80. PS1+=" ${Cya}\w${R}"
  81. if hash git 2>&-; then
  82. # git command exists
  83. if git rev-parse --git-dir > /dev/null 2>&1; then
  84. # current dir is version controlled
  85. local branch=$(git branch 2> /dev/null | grep -e ^* | cut -d ' ' -f2)
  86. PS1+=" ${R}[${Mag}${branch}${R}|"
  87. local dirty=$(git status -s | wc -l)
  88. if [[ $dirty -ne 0 ]]; then
  89. PS1+="${Mag}…$dirty"
  90. else
  91. local ahead=$(git rev-list --branches --not --remotes |wc -l)
  92. if [[ $ahead -ne 0 ]]; then
  93. PS1+="${Blu}↑${ahead}"
  94. else
  95. tag_release=`git describe --exact-match --tags $(git log -n1 --pretty='%h') 2> /dev/null`
  96. if [[ -z $tag_release ]];then
  97. PS1+="${Red}✔"
  98. else
  99. PS1+="${Gre}✔${R}|${Blu}${tag_release}"
  100. fi
  101. fi
  102. fi
  103. PS1+="${R}]"
  104. fi
  105. fi
  106. if [ $EXIT != 0 ]; then
  107. PS1+="$Mag" # Add red if exit code non 0
  108. else
  109. PS1+="$Gra"
  110. fi
  111. PS1+=" $PROMPT ${R}"
  112. }
  113. PROMPT_COMMAND='__prompt_command' # Func to gen PS1 after CMDs
  114. DEBIAN_BASH_DIR=/opt/debian-bash
  115. # You may uncomment the following lines if you want `ls' to be colorized:
  116. alias ls='ls $COLOR_OPTIONS'
  117. alias ll='ls $COLOR_OPTIONS -l'
  118. alias lh='ls $COLOR_OPTIONS -lh'
  119. alias la='ls $COLOR_OPTIONS -la'
  120. alias ltr='ls $COLOR_OPTIONS -ltrh'
  121. alias l=ls
  122. alias cd..='cd ..'
  123. alias ..=cd..
  124. alias grep='grep $COLOR_OPTIONS'
  125. alias fgrep='fgrep $COLOR_OPTIONS'
  126. alias egrep='egrep $COLOR_OPTIONS'
  127. # Alias definitions.
  128. # You may want to put all your additions into a separate file like
  129. # ~/.bash_aliases, instead of adding them here directly.
  130. # See /usr/share/doc/bash-doc/examples in the bash-doc package.
  131. if [ -f ~/.bash_aliases ]; then
  132. . ~/.bash_aliases
  133. fi
  134. # Add path to any tools folder in /opt/debian-*
  135. for i in {/opt,$HOME}/debian-*/tools; do
  136. if [ -d "$i" ]; then
  137. PATH=$PATH:$i
  138. fi
  139. done