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.

216 lines
6.9 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
4 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
5 years ago
5 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
4 years ago
4 years ago
4 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:*.mariadb.gz=01;35:*.postgres.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. export LESS="r"
  28. # enable programmable completion features (you don't need to enable
  29. # this, if it's already enabled in /etc/bash.bashrc and /etc/profile
  30. # sources /etc/bash.bashrc).
  31. if ! shopt -oq posix; then
  32. if [ -f /usr/share/bash-completion/bash_completion ]; then
  33. . /usr/share/bash-completion/bash_completion
  34. elif [ -f /etc/bash_completion ]; then
  35. . /etc/bash_completion
  36. fi
  37. fi
  38. __prompt_command() {
  39. local EXIT="$?" # This needs to be first
  40. local R='\[\e[0m\]'
  41. local Red='\[\e[1;31m\]'
  42. local Gre='\[\e[1;32m\]'
  43. local Yel='\[\e[1;33m\]'
  44. local Ora='\[\e[0;33m\]'
  45. local Blu='\[\e[1;34m\]'
  46. local Cya='\[\e[1;36m\]'
  47. local Mag='\[\e[1;95m\]'
  48. local Gra='\[\e[1;30m\]'
  49. # set xterm title
  50. echo -ne "\033]0;${USER}@${HOSTNAME}: ${PWD}\007"
  51. PS1=''
  52. if [[ $container == 'lxc' ]]; then
  53. PS1+="${Gra}[LXC:${R}"
  54. local host=$container_hostname
  55. case ${host:0:4} in
  56. 'beta')
  57. PS1+="${Yel}"
  58. ;;
  59. 'prod')
  60. PS1+="${Red}"
  61. ;;
  62. *) ;;
  63. esac
  64. PS1+="${host}${Gra}] "
  65. fi
  66. if [ $(id -u) -eq 0 ]; then
  67. PS1+="${Yel}\u${R}"
  68. PROMPT='$'
  69. else
  70. PS1+="$Gre\u$R"
  71. PROMPT='#'
  72. fi
  73. PS1+="${Gra}@"
  74. case ${HOSTNAME:0:4} in
  75. 'beta')
  76. PS1+="${Yel}"
  77. ;;
  78. 'prod')
  79. PS1+="${Red}"
  80. ;;
  81. *)
  82. PS1+="${R}"
  83. ;;
  84. esac
  85. PS1+="\h"
  86. local pwd='~'
  87. [ "$PWD" != "$HOME" ] && pwd=${PWD/#$HOME\//\~\/}
  88. PS1+=" ${Cya}${pwd}$(__vte_osc7)${R}"
  89. #PS1+=" ${Cya}\w${R}"
  90. if hash git 2>&-; then
  91. # git command exists
  92. if git rev-parse --git-dir >/dev/null 2>&1; then
  93. # current dir is version controlled
  94. local branch=$(git branch 2>/dev/null | grep -e ^* | cut -d ' ' -f2)
  95. PS1+=" ${R}[${Mag}${branch}${R}|"
  96. local tag_release=$(git describe --tags 2>/dev/null | cut -d'-' -f1)
  97. local dirty=$(git status -s | wc -l)
  98. if [[ $dirty -ne 0 ]]; then
  99. PS1+="⚡|${tag_release}${Yel}…$dirty"
  100. else
  101. local ahead=$(git rev-list --branches --not --remotes | wc -l)
  102. if [[ $ahead -ne 0 ]]; then
  103. PS1+="⚡|${tag_release}${Cya}↑${ahead}"
  104. else
  105. if [[ -z $tag_release ]]; then
  106. PS1+="${Blu}✔"
  107. else
  108. PS1+="${Gre}✔${R}|${Blu}${tag_release}"
  109. fi
  110. fi
  111. fi
  112. PS1+="${R}]"
  113. fi
  114. fi
  115. if [ $EXIT != 0 ]; then
  116. PS1+="$Mag" # Add red if exit code non 0
  117. else
  118. PS1+="$Gra"
  119. fi
  120. PS1+=" $PROMPT ${R}"
  121. }
  122. __vte_osc7() {
  123. # HINT: special character vte to get TILIX show proper hostname and pwd
  124. # Use \[...\] around the parts of PS1 that have length 0.
  125. # https://unix.stackexchange.com/questions/28827/why-is-my-bash-prompt-getting-bugged-when-i-browse-the-history#28828
  126. VTE_INFO="${HOSTNAME:-}"
  127. if [[ $container == 'lxc' ]]; then
  128. VTE_INFO="${container_hostname}"
  129. fi
  130. printf "\[\033]7;file://%s%s\a\]" "${VTE_INFO}" "$(__vte_urlencode "${PWD}")"
  131. }
  132. __vte_urlencode() (
  133. # This is important to make sure string manipulation is handled
  134. # byte-by-byte.
  135. LC_ALL=C
  136. str="$1"
  137. while [ -n "$str" ]; do
  138. safe="${str%%[!a-zA-Z0-9/:_\.\-\!\'\(\)~]*}"
  139. printf "%s" "$safe"
  140. str="${str#"$safe"}"
  141. if [ -n "$str" ]; then
  142. printf "%%%02X" "'$str"
  143. str="${str#?}"
  144. fi
  145. done
  146. )
  147. PROMPT_COMMAND='__prompt_command' # Func to gen PS1 after CMDs
  148. DEBIAN_BASH_DIR=/opt/debian-bash
  149. # You may uncomment the following lines if you want `ls' to be colorized:
  150. alias ls='ls $COLOR_OPTIONS -h'
  151. alias ll='ls $COLOR_OPTIONS -lh'
  152. alias la='ls $COLOR_OPTIONS -lah'
  153. alias ltr='ls $COLOR_OPTIONS -ltrh'
  154. alias l=ls
  155. alias cd..='cd ..'
  156. alias ..=cd..
  157. alias grep='grep $COLOR_OPTIONS'
  158. alias fgrep='fgrep $COLOR_OPTIONS'
  159. alias egrep='egrep $COLOR_OPTIONS'
  160. alias transfer_cp='rsync -a --info=progress2 --no-inc-recursive'
  161. # Alias definitions.
  162. # You may want to put all your additions into a separate file like
  163. # ~/.bash_aliases, instead of adding them here directly.
  164. # See /usr/share/doc/bash-doc/examples in the bash-doc package.
  165. if [ -f ~/.bash_aliases ]; then
  166. . ~/.bash_aliases
  167. fi
  168. # Add path to any tools folder in /opt/debian-*
  169. for i in {/opt,$HOME}/debian-*/tools; do
  170. if [ -d "$i" ]; then
  171. PATH=$PATH:$i
  172. fi
  173. done
  174. ## Add path for TOOLBOX if any
  175. if [ -d "/TOOLBOX" ]; then
  176. PATH=$PATH:/TOOLBOX
  177. fi