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.

210 lines
6.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
4 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
4 years ago
5 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
5 years ago
4 years ago
4 years ago
5 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. 'prod')
  59. PS1+="${Red}";;
  60. *)
  61. esac
  62. PS1+="${host}${Gra}] "
  63. fi
  64. if [ `id -u` -eq 0 ]; then
  65. PS1+="${Yel}\u${R}"
  66. PROMPT='$'
  67. else
  68. PS1+="$Gre\u$R"
  69. PROMPT='#'
  70. fi
  71. PS1+="${Gra}@"
  72. case ${HOSTNAME:0:4} in
  73. 'beta')
  74. PS1+="${Yel}";;
  75. 'prod')
  76. PS1+="${Red}";;
  77. *)
  78. PS1+="${R}";;
  79. esac
  80. PS1+="\h"
  81. local pwd='~'
  82. [ "$PWD" != "$HOME" ] && pwd=${PWD/#$HOME\//\~\/}
  83. PS1+=" ${Cya}${pwd}$(__vte_osc7)${R}"
  84. #PS1+=" ${Cya}\w${R}"
  85. if hash git 2>&-; then
  86. # git command exists
  87. if git rev-parse --git-dir > /dev/null 2>&1; then
  88. # current dir is version controlled
  89. local branch=$(git branch 2> /dev/null | grep -e ^* | cut -d ' ' -f2)
  90. PS1+=" ${R}[${Mag}${branch}${R}|"
  91. local tag_release=$(git describe --tags 2> /dev/null | cut -d'-' -f1)
  92. local dirty=$(git status -s | wc -l)
  93. if [[ $dirty -ne 0 ]]; then
  94. PS1+="⚡|${tag_release}${Yel}…$dirty"
  95. else
  96. local ahead=$(git rev-list --branches --not --remotes |wc -l)
  97. if [[ $ahead -ne 0 ]]; then
  98. PS1+="⚡|${tag_release}${Cya}↑${ahead}"
  99. else
  100. if [[ -z $tag_release ]];then
  101. PS1+="${Blu}✔"
  102. else
  103. PS1+="${Gre}✔${R}|${Blu}${tag_release}"
  104. fi
  105. fi
  106. fi
  107. PS1+="${R}]"
  108. fi
  109. fi
  110. if [ $EXIT != 0 ]; then
  111. PS1+="$Mag" # Add red if exit code non 0
  112. else
  113. PS1+="$Gra"
  114. fi
  115. PS1+=" $PROMPT ${R}"
  116. }
  117. __vte_osc7 () {
  118. # HINT: special character vte to get TILIX show proper hostname and pwd
  119. # Use \[...\] around the parts of PS1 that have length 0.
  120. # https://unix.stackexchange.com/questions/28827/why-is-my-bash-prompt-getting-bugged-when-i-browse-the-history#28828
  121. VTE_INFO="${HOSTNAME:-}"
  122. if [[ $container == 'lxc' ]];then
  123. VTE_INFO="${container_hostname}"
  124. fi
  125. printf "\[\033]7;file://%s%s\a\]" "${VTE_INFO}" "$(__vte_urlencode "${PWD}")"
  126. }
  127. __vte_urlencode() (
  128. # This is important to make sure string manipulation is handled
  129. # byte-by-byte.
  130. LC_ALL=C
  131. str="$1"
  132. while [ -n "$str" ]; do
  133. safe="${str%%[!a-zA-Z0-9/:_\.\-\!\'\(\)~]*}"
  134. printf "%s" "$safe"
  135. str="${str#"$safe"}"
  136. if [ -n "$str" ]; then
  137. printf "%%%02X" "'$str"
  138. str="${str#?}"
  139. fi
  140. done
  141. )
  142. PROMPT_COMMAND='__prompt_command' # Func to gen PS1 after CMDs
  143. DEBIAN_BASH_DIR=/opt/debian-bash
  144. # You may uncomment the following lines if you want `ls' to be colorized:
  145. alias ls='ls $COLOR_OPTIONS'
  146. alias ll='ls $COLOR_OPTIONS -l'
  147. alias lh='ls $COLOR_OPTIONS -lh'
  148. alias la='ls $COLOR_OPTIONS -la'
  149. alias ltr='ls $COLOR_OPTIONS -ltrh'
  150. alias l=ls
  151. alias cd..='cd ..'
  152. alias ..=cd..
  153. alias grep='grep $COLOR_OPTIONS'
  154. alias fgrep='fgrep $COLOR_OPTIONS'
  155. alias egrep='egrep $COLOR_OPTIONS'
  156. # Alias definitions.
  157. # You may want to put all your additions into a separate file like
  158. # ~/.bash_aliases, instead of adding them here directly.
  159. # See /usr/share/doc/bash-doc/examples in the bash-doc package.
  160. if [ -f ~/.bash_aliases ]; then
  161. . ~/.bash_aliases
  162. fi
  163. # Add path to any tools folder in /opt/debian-*
  164. for i in {/opt,$HOME}/debian-*/tools; do
  165. if [ -d "$i" ]; then
  166. PATH=$PATH:$i
  167. fi
  168. done