0ad9829589055f1ca4859ef55ce46bfb3a8e9e1e
David Blume Fixed when /etc bashrc gets...

David Blume authored 8 years ago

1) if [[ $(uname -s) != Darwin* ]] && [ -f /etc/bashrc ]; then
2)     # Fedora but not Macintosh requires explicit sourcing of /etc/bashrc
3)     # On Debian, it's /etc/bash.bashrc, but it doesn't have to be sourced here.
4)     . /etc/bashrc
5) fi
6) 
dblume Make local __git_ps1 work a...

dblume authored 2 years ago

7) if ! $(declare -F __git_ps1 >/dev/null); then
dblume Try to source __git_ps1 fir...

dblume authored 2 years ago

8)     # Try to source a file with __git_ps1
9)     if [[ -e /usr/lib/git-core/git-sh-prompt ]]; then
dblume Try to source a script for...

dblume authored 2 years ago

10)         . /usr/lib/git-core/git-sh-prompt
dblume Try to source __git_ps1 fir...

dblume authored 2 years ago

11)     elif [[ -e /usr/share/git-core/contrib/completion/git-prompt.sh ]]; then
dblume Try to source a script for...

dblume authored 2 years ago

12)         . /usr/share/git-core/contrib/completion/git-prompt.sh
13)     elif [[ $(uname -s) == Darwin* ]] && [[ -f $(brew --prefix git)/etc/bash_completion.d/git-prompt.sh ]]; then
14)         . $(brew --prefix git)/etc/bash_completion.d/git-prompt.sh
dblume Add option to manually down...

dblume authored 2 years ago

15)     elif [[ -f $HOME/.git-prompt.sh ]]; then
16)         # wget -O ~/.git-prompt.sh https://raw.githubusercontent.com/git/git/master/contrib/completion/git-prompt.sh
17)         . $HOME/.git-prompt.sh
dblume Try to source __git_ps1 fir...

dblume authored 2 years ago

18)     fi
19) 
20)     # Still no __git_ps1? Fake it.
21)     if ! $(declare -F __git_ps1 >/dev/null); then
dblume Don't call git if not in a...

dblume authored 2 years ago

22)         # By icetan at https://stackoverflow.com/a/35513635/9181
23)         # Ex. to test if in a git repo: "rtrav .git $PWD"
24)         rtrav() { [ -e "$2"/"$1" ] || { [ "$2" != / ] && rtrav "$1" $(dirname "$2"); } }
25) 
dblume Try to source __git_ps1 fir...

dblume authored 2 years ago

26)         __git_ps1() {
dblume Don't call git if not in a...

dblume authored 2 years ago

27)             if rtrav .git "$PWD"; then
28)                 local fmt="${1:- (%s)}"
29)                 local branch=$(git branch 2>/dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/')
30)                 if [ -n "$branch" ]; then
31)                     printf -- "$fmt" "$branch"
32)                 fi
dblume Try to source __git_ps1 fir...

dblume authored 2 years ago

33)             fi
34)         }
35)     fi
dblume Use __git_ps1 when possible.

dblume authored 2 years ago

36) fi
dblume Experiment: Add git branch...

dblume authored 2 years ago

37) 
dblume Try to source __git_ps1 fir...

dblume authored 2 years ago

38) GIT_PS1_SHOWUPSTREAM="auto"
39) GIT_PS1_SHOWDIRTYSTATE="true"
dblume Don't call git if not in a...

dblume authored 2 years ago

40) GIT_PS1_STATESEPARATOR=""
dblume Try to source __git_ps1 fir...

dblume authored 2 years ago

41) 
dblume Add Docker container to PS1

dblume authored 2 years ago

42) # Trim everything before the dash, then trim everything after the colon.
dblume Stop exporting PS1 behind S...

dblume authored 2 years ago

43) PS1_DOCKER_VER=${DOCKER_VER#*-}
44) PS1_DOCKER_VER="🐳 \e[0;36m${PS1_DOCKER_VER%:*}"
dblume Add Docker container to PS1

dblume authored 2 years ago

45) 
dblume Stop exporting PS1 behind S...

dblume authored 2 years ago

46) # In PS1, "\h" is hostname
dblume Add Docker container to PS1

dblume authored 2 years ago

47) if [[ -n $SSH_CLIENT ]]; then
dblume Stop exporting PS1 behind S...

dblume authored 2 years ago

48)     PS1_HOSTNAME="$HOSTNAME:"
David Blume New PS1 with error detectio...

David Blume authored 6 years ago

49) else
dblume Stop exporting PS1 behind S...

dblume authored 2 years ago

50)     PS1_HOSTNAME=
David Blume New PS1 with error detectio...

David Blume authored 6 years ago

51) fi
52) 
dblume Stop exporting PS1 behind S...

dblume authored 2 years ago

53) export PROMPT_DIRTRIM=2
54) export PS1='$(if [ $? -eq 0 ]; then echo -e "\[\e[32m\]\xe2\x9c\x93";
55)               else echo -e "\[\e[31m\]\xe2\x9c\x97";
56)               fi)$(if [ -n "$DOCKER_VER" ]; then echo -e " $PS1_DOCKER_VER";
57)               fi) \[\e[38;5;242m\]$PS1_HOSTNAME\w$(__git_ps1 " \[\e[38;5;030m\]%s\[\e[38;5;242m\]")$\[\e[0m\] '
58) 
David Blume New PS1 with error detectio...

David Blume authored 6 years ago

59) set -o vi
David Blume first commit

David Blume authored 8 years ago

60) 
61) add_to_path() {
62)     if [ -d "$1" ] && [[ ! $PATH =~ (^|:)$1(:|$) ]]; then
63)         PATH+=:$1
64)     fi
65) }
66) 
67) # if this is a CygWin .bashrc, then set CygWin's commands first in PATH
68) # because link.exe and find.exe exist in Windows's path.
69) # Add /usr/lib/lapack at the end so python's numpy can find lapack_lite
70) # (Note: BSD bash, used by OS X doesn't have the "substr" test for expr.)
71) if [[ $(uname -s) == CYGWIN* ]]; then
David Blume Use spaces instead of tabs.

David Blume authored 8 years ago

72)     PATH=/usr/local/bin:/usr/bin:$PATH
73)     PATH=${PATH//":/usr/local/bin:/usr/bin"/} # delete any instances in middle
74)     add_to_path /usr/lib/lapack
David Blume Add md() support for Cygwin...

David Blume authored 5 years ago

75)     export GIT_SSH=/cygdrive/c/cygwin64/bin/ssh
David Blume Use spaces instead of tabs.

David Blume authored 8 years ago

76)     ulimit -n 1024 # for "duplicity"
David Blume Add support for 'md' on WSL.

David Blume authored 3 years ago

77) elif [[ -n "${WSL_DISTRO_NAME}" ]]; then
78)     export BROWSER=/mnt/c/Program\ Files\ \(x86\)/Google/Chrome/Application/chrome.exe
dblume Add pbcopy for WSL2

dblume authored 2 years ago

79)     alias pbcopy='tee <&0 | /mnt/c/Windows/System32/clip.exe'
David Blume first commit

David Blume authored 8 years ago

80) fi
81) 
David Blume whitespace

David Blume authored 6 years ago

82) # change the color of directories in the ls command
David Blume Refactor .bashrc to keep di...

David Blume authored 8 years ago

83) if [[ $(uname -s) == Darwin* ]]; then
84)     export LSCOLORS=gxfxcxdxbxegedabagacad
85)     export CLICOLOR=1
86) else
87)     # After executing: dircolors -p > .dircolors
88)     # Lighten the color of directories from blue to light blue
89)     # sed -i '/# directory/c\DIR 00;36 # directory' .dircolors
90)     if [ -x /usr/bin/dircolors ]; then
91)         test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
92)         alias ls='ls --color=auto'
93)     fi
David Blume first commit

David Blume authored 8 years ago

94) fi
95) 
David Blume Add .vimrc tab values for ....

David Blume authored 7 years ago

96) export P4DIFF='vim -d'  # Override from the command line: "P4DIFF=; p4 diff main.py"
David Blume Set vim as editor for cscope

David Blume authored 6 years ago

97) export CSCOPE_EDITOR=vim
David Blume Add .vimrc tab values for ....

David Blume authored 7 years ago

98) 
David Blume Add alias for colors in ls...

David Blume authored 8 years ago

99) alias grep='grep --color=auto'
100) alias fgrep='fgrep --color=auto'
101) alias egrep='egrep --color=auto'
David Blume I almost always want to do...

David Blume authored 4 years ago

102) alias vim-='vim +"setl buftype=nofile" -'
dblume vim: Use more common char f...

dblume authored 2 years ago

103) alias tmux='tmux -2u'
David Blume Add alias for colors in ls...

David Blume authored 8 years ago

104) 
105) # colored GCC warnings and errors
106) export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
107) 
David Blume first commit

David Blume authored 8 years ago

108) # Add to PATH only if not already in PATH.
109) add_to_path $HOME/bin
110) 
David Blume disable ctrl+s as stty flow...

David Blume authored 3 years ago

111) # For interactive shells ('i' in $-), disable stty flow control (ctrl+s,ctrl+q)
112) case "$-" in
113) *i*)
114)   stty start ''
115)   stty stop  ''
116)   stty -ixon # disable XON/XOFF flow control
117)   stty ixoff # enable sending (to app) of start/stop characters
118)   stty ixany # let any character restart output, not only start character
119)   ;;
120) *) ;;
121) esac
122) 
David Blume first commit

David Blume authored 8 years ago

123) alias findinpyfiles="find . -name \*.py -print0 | xargs -0 grep -nI"
David Blume Add a few c++ aliases, and...

David Blume authored 8 years ago

124) alias findinchppfiles="find . -type f \( -name \*.[ch]pp -or -name \*.[ch] \) -print0 | xargs -0 grep -nI"
125) alias findincppfiles="find . -type f \( -name \*.cpp -or -name \*.c \) -print0 | xargs -0 grep -nI"
126) alias findinhppfiles="find . -type f \( -name \*.hpp -or -name \*.h \) -print0 | xargs -0 grep -nI"
127) 
128) alias clip="expand | cut -b1-\$COLUMNS"
David Blume Optionally source a .localr...

David Blume authored 7 years ago

129) 
David Blume Add alias for httpie https

David Blume authored 6 years ago

130) # For httpie: https://github.com/jakubroztocil/httpie#installation
131) alias https='http --default-scheme=https'
132) 
David Blume Add a command for viewing M...

David Blume authored 5 years ago

133) md() {
David Blume Make the local variables co...

David Blume authored 5 years ago

134)     declare -r sys_name=$(uname -s)
David Blume Add md() support for Cygwin...

David Blume authored 5 years ago

135)     if [[ $sys_name == Darwin* ]]; then
David Blume Make the local variables co...

David Blume authored 5 years ago

136)         declare -r T=$(mktemp $TMPDIR$(uuidgen).html)
David Blume Add md() support for Cygwin...

David Blume authored 5 years ago

137)         curl -s -X POST --data-binary @"$1" https://md.dlma.com/ > $T
David Blume No need to specify Safari t...

David Blume authored 5 years ago

138)         open $T
David Blume Add md() support for Cygwin...

David Blume authored 5 years ago

139)     elif [[ $sys_name == CYGWIN* ]]; then
David Blume Make the local variables co...

David Blume authored 5 years ago

140)         declare -r T=$(mktemp --suffix=.html)
David Blume Add md() support for Cygwin...

David Blume authored 5 years ago

141)         curl -s -X POST --data-binary @"$1" https://md.dlma.com/ > $T
142)         cygstart $T
David Blume Add a command for viewing M...

David Blume authored 5 years ago

143)     else
David Blume Make the local variables co...

David Blume authored 5 years ago

144)         declare -r T=$(mktemp --suffix=.html)
David Blume Add md() support for Cygwin...

David Blume authored 5 years ago

145)         curl -s -X POST --data-binary @"$1" https://md.dlma.com/ > $T
David Blume Add support for 'md' on WSL.

David Blume authored 3 years ago

146)         if [[ -z "${WSL_DISTRO_NAME}" ]]; then
dblume Use gio open instead of xdg...

dblume authored 2 years ago

147)             gio open $T
David Blume Add support for 'md' on WSL.

David Blume authored 3 years ago

148)             echo "rm \"$T\" >/dev/null 2>&1" | at now + 2 minutes
149)         else
150)             # Set BROWSER to your web browser's path
dblume Don't call git if not in a...

dblume authored 2 years ago

151)             "$BROWSER" '\\wsl$/Ubuntu'$T
David Blume Add support for 'md' on WSL.

David Blume authored 3 years ago

152)         fi
David Blume Add a command for viewing M...

David Blume authored 5 years ago

153)     fi
154) }
155) 
David Blume I almost always want to do...

David Blume authored 4 years ago

156) concept() {
David Blume Add support for tmux; use p...

David Blume authored 4 years ago

157)     # apropos -s 7 . | awk '!/iso|latin/ {print $1}' | shuf -n 1 | xargs man 7
158)     apropos -s 7 . | awk '!/iso|latin/ {print $1}' | shuf -n 1 | pee "xargs echo man 7" "xargs man 7"
David Blume I almost always want to do...

David Blume authored 4 years ago

159) }
160) 
David Blume Added venv command

David Blume authored 3 years ago

161) venv() {
David Blume venv() supports filename co...

David Blume authored 3 years ago

162)     # Inspired by https://twitter.com/gvanrossum/status/1319328122618048514
163)     if hash deactivate 2>/dev/null; then
164)         deactivate
165)     fi
166)     if [[ $1 ]]; then
167)         if [ ! -f $1/bin/activate ]; then
168)             echo "Creating with: python3 -m venv $1"
169)             python3 -m venv $1
David Blume Added venv command

David Blume authored 3 years ago

170)         fi
David Blume venv() supports filename co...

David Blume authored 3 years ago

171)         source $1/bin/activate
David Blume Added venv command

David Blume authored 3 years ago

172)     fi
173) }
174) 
David Blume Moving ignoredups:erasedups...

David Blume authored 4 years ago

175) # https://unix.stackexchange.com/questions/1288/preserve-bash-history-in-multiple-terminal-windows
176) HISTCONTROL=ignoredups:erasedups
David Blume Add some commands to exclud...

David Blume authored 4 years ago

177) HISTIGNORE="&:ls:[bf]g:exit:pwd:clear"
David Blume I almost always want to do...

David Blume authored 4 years ago

178) #HISTFILESIZE=2000
179) #HISTSIZE=2000
180) # [ $(wc -l < $HOME/.bash_history) -gt 950 ] && echo "David, your .bash_history is over 950 lines. Consider updating your .bashrc."
David Blume Moving ignoredups:erasedups...

David Blume authored 4 years ago

181) shopt -s histappend
182) 
David Blume Forgot a corresponding chan...

David Blume authored 7 years ago

183) if [ -f $HOME/.localrc ]; then
David Blume Specify path for .localrc

David Blume authored 7 years ago

184)     source $HOME/.localrc