]> git.phdru.name Git - dotfiles.git/blob - .shellrc
bash: Prepend memory control group to `PS1`
[dotfiles.git] / .shellrc
1 #
2 # $HOME/.shellrc
3 #
4
5 # ~/.bashrc: executed by bash(1) for non-login shells.
6 # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
7 # for examples
8
9 # If not running interactively, don't do anything
10 case $- in
11     *i*) ;;
12       *) return ;;
13 esac
14
15 # Stop if non-interactive shell
16 [ -z "$PS1" ] && return
17
18 if test -n "$BASH_VERSION"; then
19    # append to the history file, don't overwrite it
20    shopt -s histappend
21
22    # check the window size after each command and, if necessary,
23    # update the values of LINES and COLUMNS.
24    shopt -s checkwinsize
25
26    # If set, the pattern "**" used in a pathname expansion context will
27    # match all files and zero or more directories and subdirectories.
28    #shopt -s globstar
29 fi
30
31
32 #if [ -x /usr/bin/dircolors ]; then
33 #   # I don't like these aliases - they work only in command line
34 #   # but not in scripts I run from command line.
35 #   # Color parameters must be passed via environment.
36 #   # So instead I put them in shell scripts in ~/bin.
37 #   alias ls='ls --color=auto'
38 #   alias dir='dir --color=auto'
39 #   alias vdir='vdir --color=auto'
40 #
41 #   alias grep='grep --color=auto'
42 #   alias fgrep='fgrep --color=auto'
43 #   alias egrep='egrep --color=auto'
44 #
45 #   alias dmesg='dmesg --human'
46 #fi
47
48
49 case "$HOME" in
50    /home/*)
51       if [ -L /home ]; then
52          START_DIR="`pwd`" &&
53          cd "$HOME" &&
54          HOME="`pwd`" &&
55          cd "$START_DIR"
56       fi
57    ;;
58 esac
59
60
61 if test -n "$BASH_VERSION"; then
62    [ "`type -t ls`" = alias ] && unalias ls
63    [ "`type -t ll`" = alias ] && unalias ll
64    [ "`type -t mc`" = alias ] && unalias mc
65
66    back() { cd - "$@"; }
67    functions() { typeset -f "$@"; }
68    j() { jobs; }
69
70    has_completion() { return 0; }
71    if [ -z "$BASH_COMPLETION_COMPAT_DIR" ]; then
72       if [ "$SHELL" = /bin/bash ]; then
73          if [ -d /usr/share/bash-completion -a -f /usr/share/bash-completion/bash_completion ]; then
74             . /usr/share/bash-completion/bash_completion
75             has_completion() { [ -r /usr/share/bash-completion/completions/$1 ]; }
76          elif [ -f /etc/bash_completion ]; then
77             . /etc/bash_completion
78             has_completion() { [ -r /etc/bash_completion.d/$1 ]; }
79          elif [ -d /etc/bash_completion.d ]; then
80             for _compf in /etc/bash_completion.d/*; do
81                . $_compf
82             done
83             has_completion() { [ -r /etc/bash_completion.d/$1 ]; }
84          fi
85       elif [ "$SHELL" = /usr/local/bin/bash ]; then
86          if [ -d /usr/local/etc/bash_completion.d ]; then
87             for _compf in /usr/local/etc/bash_completion.d/*; do
88                . $_compf
89             done
90             has_completion() { [ -r /usr/local/etc/bash_completion.d/$1 ]; }
91          fi
92       else
93          echo "Unknown OS type, cannot source bash_completion" >&2
94       fi
95    fi
96
97    for cmd in builtin cgmem_nice command dbus-launch exec \
98       killall man nice nohup pidof pidOf KillAll pgrep pkill psg pswg su sudo \
99       time whence whereis which xargs; do
100          ! has_completion $cmd && complete -o default -A command $cmd
101    done
102
103    for cmd in dig host mtr nslookup nc netcat nmap p ping ping6 socat \
104       telnet t tt \
105       tcptraceroute tcptraceroute6 tracert tracert6 traceroute traceroute6 \
106       whois wd wget wget-download wget-m wget-wrapper ww; do
107          ! has_completion $cmd && complete -A hostname $cmd
108    done
109
110    for cmd in distribute ftp lftp r rsync \
111       s scp ssh smbclient tcpdump tshark wireshark; do
112          ! has_completion $cmd && complete -o default -A hostname $cmd
113    done
114
115    if [ -d "$HOME"/.bash_completion.d ]; then
116       for _compf in "$HOME"/.bash_completion.d/*; do
117          . $_compf
118       done
119    fi
120
121    delegate_completion() {
122       local prog programs
123       prog=$1
124       if has_completion $prog; then
125          shift
126          programs="$@"
127          eval "_${prog}_completion_loader() {
128             _completion_loader $prog
129             complete -o nospace -F _$prog $programs
130             unset _${prog}_completion_loader
131             return 124
132          }"
133          complete -F _${prog}_completion_loader $programs
134       fi
135    }
136
137    delegate_completion make m
138    delegate_completion ping p
139    delegate_completion rsync r rsync_cgmn rsync_cgmn_recode
140    delegate_completion ssh s
141    delegate_completion wget wget-m wget-wrapper ww
142
143    unset has_completion delegate_completion
144
145    complete -A job bg fg j jobs wait
146    complete -A variable -A function unset
147
148    if [ -d "$HOME/lib/config" ]; then
149       complete -W "`cd \"$HOME/lib/config\" && echo *`" include
150    fi
151    complete -W "`echo $BROWSER | sed 's/:/ /g'`" start-browser
152
153    if [ "`type -t short_curdir`" != function -a \
154          -r "$HOME"/admin/prog/bash_prompt ]; then
155       . "$HOME"/admin/prog/bash_prompt
156    fi
157
158    PS1="\`cgmem_which_prompt\`$OPS1$SHLVL "
159
160    #if type -p pip >/dev/null 2>&1; then
161    #   eval "`pip completion --bash`"
162    #   rm -rf /tmp/pip_build_"$USER"
163    #fi
164
165    #if which pyenv >/dev/null 2>&1; then
166    #   eval "`pyenv init -`"
167    #   eval "`pyenv virtualenv-init -`"
168    #fi
169
170    . virtualenvwrapper_lazy.sh 2>/dev/null
171
172    if [ -n "$VIRTUAL_ENV" ] && ! type deactivate >/dev/null 2>&1; then
173       . "$VIRTUAL_ENV/bin/activate"
174    fi
175
176    # Clean up python virtual environment on exit
177    # See https://virtualenvwrapper.readthedocs.io/en/latest/tips.html#clean-up-environments-on-exit
178
179    trap '[ "$VIRTUAL_ENV" ] && deactivate' EXIT
180
181 elif test -n "$KSH_VERSION" -o -n "$FCEDIT"; then
182    back() { cd - "$@"; }
183    j() { jobs; }
184 fi
185
186
187 # clear screen and history, logout
188 chlo() { clear; cd; >$HISTFILE; unset HISTFILE; history -c; logout || exit; }
189
190
191 if test -x /usr/bin/git >/dev/null 2>&1; then
192    # chdir to a directory
193    cdgitpath() {
194       if [ $# -ne 1 ]; then
195          echo "Usage: cdgitpath path_key" >&2
196          return 1
197       fi
198
199       path_key="$1"
200       if [ -z "$path_key" ]; then
201          echo "Usage: cdgitpath path_key" >&2
202          return 1
203       fi
204
205       path_url="`git config --get --path $path_key`"
206       if echo "$path_url" | grep -q '^file:/'; then
207          path_url="`echo \"$path_url\" | sed 's@^file:/\+@/@'`"
208       fi
209       cd "$path_url"
210    }
211
212    # chdir to a remote's directory (if the remote is on the local FS)
213    cdremote() {
214       if [ $# -gt 1 ]; then
215          echo "Usage: cdremote [remote_name]" >&2
216          return 1
217       fi
218
219       if [ -z "$1" ]; then
220          branch="`git rev-parse --abbrev-ref HEAD`"
221          remote="`git config --get branch.$branch.remote`"
222       else
223          remote="$1"
224       fi
225
226       if [ -n "$remote" ] && git config --get remote.$remote.url |
227             grep -q '^\(file:/\|/\|\.\./\)'; then # (file:/ or / or ../ at the beginning)
228          cdgitpath remote.$remote.url
229       else
230
231          if [ -n "$1" ]; then
232             echo "Cannot find directory for remote $1" >&2
233             echo "Usage: cdremote [remote_name]" >&2
234             return 1
235          fi
236
237          if test -n "$BASH_VERSION"; then
238             _list_remotes '^\(file:/\|/\|\.\./\)' # (file:/ or / or ../ at the beginning)
239             if [ ${#GIT_REMOTES[*]} -eq 1 ]; then
240                remote=${GIT_REMOTES[0]}
241                unset GIT_REMOTES
242                cdgitpath remote.$remote.url
243             else
244                unset GIT_REMOTES
245                echo "Cannot find directory for any remote" >&2
246                echo "Usage: cdremote [remote_name]" >&2
247                return 1
248             fi
249          else
250             echo "Cannot find directory for remote $1" >&2
251             echo "Usage: cdremote [remote_name]" >&2
252             return 1
253          fi
254       fi
255    }
256
257    if test -n "$BASH_VERSION"; then
258       # completion for aliases in global .gitconfig
259
260       # fixup rbi rbia rbiap rbip - do refs name completion
261       _git_fixup() { __gitcomp_nl "$(__git_refs)" ; }
262       _git_rbi() { __gitcomp_nl "$(__git_refs)" ; }
263       _git_rbia() { __gitcomp_nl "$(__git_refs)" ; }
264       _git_rbiap() { __gitcomp_nl "$(__git_refs)" ; }
265       _git_rbip() { __gitcomp_nl "$(__git_refs)" ; }
266       #
267       # push-to-all-remotes - do branch name completion
268       _git_push_to_all_remotes() { __gitcomp_nl "$(__git_heads)" ; }
269
270       _cdgitpath_complete() {
271          local cur="${COMP_WORDS[COMP_CWORD]}"
272          COMPREPLY=(`compgen -W "$(__git_config_get_set_variables)" -- "$cur"`)
273       }
274
275       _git_open() {
276          _cdgitpath_complete
277       }
278
279       complete -F _cdgitpath_complete cdgitpath git-open
280
281       # list remotes with URLs matching a regexp
282       _list_remotes() {
283          if [ $# -ne 1 ]; then
284             echo "Usage: _list_remotes remote_regexp" >&2
285             return 1
286          fi
287          declare -ag GIT_REMOTES=()
288          local remote
289          for remote in `git remote`; do
290             if git config --get remote.$remote.url | grep -q "$1"; then
291                GIT_REMOTES+=($remote)
292             fi
293          done
294       }
295
296       # completion for cdremote and git-open-remote - list remotes with a pattern
297       _list_remotes_completion() {
298          local cur="${COMP_WORDS[COMP_CWORD]}"
299          _list_remotes "$1"
300          COMPREPLY=(`compgen -W "${GIT_REMOTES[*]}" -- "$cur"`)
301          unset GIT_REMOTES
302       }
303
304       # completion for cdremote - list remotes with directories as URLs
305       _cdremote_complete() {
306          _list_remotes_completion '^\(file:/\|/\|\.\./\)' # (file:/ or / or ../ at the beginning)
307          if [ ${#COMPREPLY[*]} -eq 0 ]; then
308             _list_remotes_completion .
309          fi
310       }
311
312       complete -F _cdremote_complete cdremote
313
314       # completion for git-open-remote - list remotes with http(s) URLs
315       _git_open_remote() {
316          _list_remotes_completion '^http\(s\)\?://'
317          if [ ${#COMPREPLY[*]} -eq 0 ]; then
318             _list_remotes_completion .
319          fi
320       }
321
322       complete -F _git_open_remote git-open-remote
323    fi
324 fi
325
326
327 include() {
328    cfg="$1"
329    if [ -f "./$cfg" -a -r "./$cfg" ]; then
330       echo "Reading config file \`$cfg'" 1>&2
331       . "./$cfg"
332    elif [ -f "$HOME/lib/config/$cfg" -a -r "$HOME/lib/config/$cfg" ]; then
333       echo "Reading config file \`$HOME/lib/config/$cfg'" 1>&2
334       . "$HOME/lib/config/$cfg"
335    else
336       echo "Cannot find config file \`$cfg'" 1>&2
337    fi
338 }
339
340
341 mc() {
342    if test -n "$BASH_VERSION"; then
343       MC_SAVE_OPS1="$OPS1"
344       if [ "`type -t short_curdir`" = function ]; then
345          OPS1="\u@\${HOSTNAME::5} \`short_curdir\` \\$"
346       else
347          OPS1="\u@\h \W \\$"
348       fi
349    fi
350
351    if [ -n "$SLOWTERM" ]; then
352       MC_SLOW="--slow"
353    fi
354
355    case "$TERM" in
356       screen*) # screen, screen.rxvt
357          MC_XTERM="-x"
358       ;;
359    esac
360
361    #TMPDIR="$HOME"/tmp
362    #export TMPDIR
363
364    MC_FOUND=NO
365
366    for wrapper in \
367          /usr/local/share/mc/bin/mc-wrapper.sh \
368          /usr/local/libexec/mc/mc-wrapper.sh \
369          /usr/share/mc/bin/mc-wrapper.sh; do
370       if [ -r $wrapper ]; then
371          . $wrapper $MC_SLOW $MC_XTERM "$@"
372          rc=$?
373          MC_FOUND=YES
374          break
375       fi
376    done
377
378    if [ $MC_FOUND = NO ]; then
379       for mc in /usr/local/bin/mc /usr/bin/mc; do
380          if [ -x $mc ]; then
381             MC_TMP_DIR="${TMPDIR-/tmp}/mc-$USER"
382             if [ ! -d MC_TMP_DIR="${TMPDIR-/tmp}/mc-$USER" ]; then
383                MC_TMP_DIR="${TMPDIR-/tmp}"
384             fi
385             MC_PWD_FILE="$MC_TMP_DIR/mc.pwd.$$"
386             mc_type="`mc_type.py $mc`"
387             if [ "$mc_type" = old ]; then
388                $mc -P $MC_SLOW $MC_XTERM "$@" > "$MC_PWD_FILE"
389             elif [ "$mc_type" = new ]; then
390                $mc -P "$MC_PWD_FILE" $MC_SLOW $MC_XTERM "$@"
391             else
392                continue
393             fi
394             rc=$?
395             MC_FOUND=YES
396             cd "`cat \"$MC_PWD_FILE\"`" && /bin/rm "$MC_PWD_FILE"
397             break
398          fi
399       done
400    fi
401
402    if [ $MC_FOUND = NO ]; then
403       echo "Cannot find mc-wrapper.sh or mc" >&2
404       rc=1
405    fi
406
407    [ -n "$MC_SAVE_OPS1" ] && OPS1="$MC_SAVE_OPS1"
408    unset MC_FOUND MC_PWD_FILE MC_SAVE_OPS1 MC_SLOW MC_TMP_DIR MC_XTERM
409
410    return $rc
411 }
412
413
414 mkcd() {
415    if [ $# -ne 1 ]; then
416       echo "Usage: mkcd directory_name" >&2
417    elif [ -d "$1" ]; then
418       cd "$1"
419    elif [ -e "$1" ]; then
420       echo "Error: $1 is a file" >&2
421    else
422       mkdir -p "$1" && cd "$1"
423    fi
424 }
425
426
427 if which tmux >/dev/null 2>&1; then
428    tmux() {
429       case "$TERM" in
430          rxvt)
431             TERM=rxvt-unicode command tmux "$@"
432          ;;
433
434          *)
435             command tmux "$@"
436          ;;
437       esac
438    }
439 fi
440
441
442 if [ "$SHLVL" -eq 1 ] && which startx >/dev/null 2>&1; then
443    X() { startx >> .Xserver.log 2>&1; cyr; rm -f .Xauthority; }
444 fi
445
446 x() { exit; }