summaryrefslogtreecommitdiff
path: root/roles/shell/bash/templates/bashrc.j2
blob: 08518c9dca101e731573bb85154913c7c132c9d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
#
# ~/.bashrc
#

[[ -f "$XDG_STATE_HOME/bash/bashrc_temp" ]] && . $XDG_STATE_HOME/bash/bashrc_temp

if [ -n "$HOME/.local/bin" ]; then
  PATH="$HOME/.local/bin:$PATH"
fi

# If not running interactively, don't do anything
[[ $- != *i* ]] && return

export GPG_TTY=$(tty)
export HISTFILE="$XDG_STATE_HOME/bash/history"

alias vi=vim
alias ls='ls --color=auto -F -T 0'
alias tmux='tmux -f $XDG_CONFIG_HOME/tmux/tmux.conf'

alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto'
alias egrep='egrep --color=auto'

alias sudo="sudo "
alias mv="mv -i"
alias cp="cp -i"
alias rm="rm -i"
alias psp="pstree -aUp $USER"
alias dotdrop="dotdrop --cfg $XDG_CONFIG_HOME/dotdrop/config.yaml"

[[ -f /usr/share/stgit/completion/stgit-completion.bash ]] && . /usr/share/stgit/completion/stgit-completion.bash

{% if role.get(profile) == "fretlink" %}
##### Some Fretlink aliases
alias getDump='s3cmd -c <(pass show Travail/Fretlink/S3) get '

function vpn() {
  TMPFILE=$(mktemp /tmp/openvpn.XXXXXX)
  pass show Travail/Fretlink/OpenVPN >> $TMPFILE
  sudo openvpn $TMPFILE
  rm -f $TMPFILE
}

function dev_prompt() {
  if [ -n "$FRETLINK_ENV" ]; then
    echo "{$FRETLINK_ENV} "
  fi
}

function tmux_dev() {
  type="${1:-bash}"
  if [ -n "$TMUX" ]; then
    m=switch-client
  else
    m=attach-session
  fi

  case "$type" in
    "bash") start_dir="$HOME";;
    "remote") start_dir="$HOME";;
    "puppet") start_dir="/etc/puppetlabs/code"
  esac

  if tmux has-session -t "$type" 2>/dev/null; then
    tmux $m -t "$type"
  else
    if [ "$type" = "remote" ]; then
      tmux new-session -d -c $start_dir -s "$type" mosh immae.eu \; \
          $m -t "$type"
    elif [ -n "$start_dir" ]; then
      tmux new-session -d -c $start_dir -s "$type" \; \
          $m -t "$type" \; \
          new-window -c $start_dir
    else
      tmux new-session -d -c "$HOME/workdir/$type" -s "$type" \; \
          $m -t "$type" \; \
          send-keys "../start" C-m \; \
          rename-window "running" \; \
          new-window -c "$HOME/workdir/$type"
    fi
  fi
}

_tmux_dev() {
  COMPREPLY=()
  local cur="${COMP_WORDS[COMP_CWORD]}"
  prefix="$HOME/workdir/"
  local IFS=$'\n'
  local items=($(IFS=' ' compgen -W "bash remote puppet" -- $cur) $(compgen -d $prefix$cur))
  for item in ${items[@]}; do
    [[ $item == $prefix.* ]] && continue
    COMPREPLY+=("${item#$prefix}")
  done
}
complete -o filenames -F _tmux_dev tmux_dev

if [ -n "$TMUX" ]; then
  TMUX_SESSION_NAME=$(tmux display-message -p "#S")
  export HISTFILE="$XDG_STATE_HOME/bash/tmux_${TMUX_SESSION_NAME}_history"
fi
##### /Fretlink
{% endif %}

# Non-printable chars need to be wrapped by \[ ... \] otherwise bash
# will wrongly count the size of the prompt and glitch when going
# through history
function git_prompt_color() {
  git diff --quiet 2>/dev/null && git diff --cached --quiet 2>/dev/null
  gitstatus=$?
  if [ "$gitstatus" -gt 0 ]; then
    av=$'\033[01;31m'
  else
    av=$'\033[01;34m'
  fi
  echo "$av"
}

function git_prompt() {
  gitinfo=$(git branch 2>/dev/null | grep "^*" | cut -c3-);
  git diff --quiet 2>/dev/null && git diff --cached --quiet 2>/dev/null
  gitstatus=$?
  gitlsfiles=$(git ls-files . 2>/dev/null | wc -l);
  if [ "$gitinfo" -a "$gitlsfiles" -gt 0 ]; then
    echo -e "($gitinfo) "
  fi
}

function error_code() {
  ret=$?
  if [[ $ret != 0  ]]; then
    echo "$ret "
  fi
}

function running_jobs() {
  ret=$(jobs | wc -l)
  if [[ $ret != 0  ]]; then
    echo "[$ret] "
  fi
}

{% if role.get(profile) == "fretlink" %}
PS1='\[\033[01;31m\]$(error_code)\[\033[00;00m\]$(running_jobs)\[\033[01;32m\]$(dev_prompt)\[$(git_prompt_color)\]$(git_prompt)\[\033[00;32m\]\u@\h\[\033[94m\] \w \$\[\033[00m\] '
{% else %}
PS1='\[\033[01;31m\]$(error_code)\[\033[00;00m\]$(running_jobs)\[$(git_prompt_color)\]$(git_prompt)\[\033[00;32m\]\u@\h\[\033[94m\] \w \$\[\033[00m\] '
{% endif %}

PROMPT_COMMAND="[[ -f "$XDG_STATE_HOME/bash/bashrc_temp" ]] && . $XDG_STATE_HOME/bash/bashrc_temp"

{% if "nodejs" in features.get(profile, []) %}
source /usr/share/nvm/init-nvm.sh
{% endif %}