various improvements and fixes
[distro-setup] / brc
1 #!/bin/bash
2 # this gets sourced. shebang is just for file mode detection
3
4 # note, to catch errors in functions but not outside, do:
5 # set -E -o pipefail
6 # trap return ERR
7 # trap 'trap ERR' RETURN
8
9
10
11 ############
12 # settings #
13 ############
14
15 CDPATH=.
16
17 set -o pipefail
18
19 # remove all aliases. aliases provided by the system tend to get in the way,
20 # for example, error happens if I try to define a function the same name as an alias
21 unalias -a
22
23 # remove gnome keyring warning messages
24 # there is probably a more proper way, but I didn't find any easily on google
25 # now using xfce+xmonad instead of vanilla xmonad, so disabling this
26 #unset GNOME_KEYRING_CONTROL
27
28 # use extra globing features.
29 shopt -s extglob
30 # include .files when globbing, but ignore files name . and ..
31 # setting this also sets dotglob.
32 # Note, this doesn't work in bash 4.4 anymore, for paths with
33 # more than 1 directory, like a/b/.foo, since * is fixed to not match /
34 export GLOBIGNORE=*/.:*/..
35
36 # broken with bash_completion package. Saw a bug for this once. Don't anymore.
37 # still broken in wheezy
38 # still buggered in latest stable from the web, version 2.1
39 # perhaps its fixed in newer git version, which fails to make for me
40 # this note is from 6-2014.
41 # Also, enabling this before sourcing .bashrc makes PATH be empty.
42 #shopt -s nullglob
43
44 # make tab on an empty line do nothing
45 shopt -s no_empty_cmd_completion
46
47 # advanced completion
48 # http://bash-completion.alioth.debian.org/
49 # might be sourced by the system already, but I've noticed it not being sourced before
50 if ! type _init_completion &> /dev/null && [[ -r "/usr/share/bash-completion/bash_completion" ]]; then
51 . /usr/share/bash-completion/bash_completion
52 fi
53
54
55 # fix spelling errors for cd, only in interactive shell
56 shopt -s cdspell
57 # append history instead of overwritting it
58 shopt -s histappend
59 # for compatibility, per gentoo/debian bashrc
60 shopt -s checkwinsize
61 # attempt to save multiline single commands as single history entries.
62 shopt -s cmdhist
63 # enable **
64 shopt -s globstar
65
66
67 # inside emcas fixes
68 if [[ $RLC_INSIDE_EMACS ]]; then
69 # EMACS is used by bash on startup, but we don't need it anymore.
70 # plus I hit a bug in a makefile which inherited it
71 unset EMACS
72 export RLC_INSIDE_EMACS
73 export PAGER=cat
74 export MANPAGER=cat
75 # scp completion does not work, but this doesn't fix it. todo, figure this out
76 complete -r scp &> /dev/null
77 # todo, remote file completion fails, figure out how to turn it off
78 export NODE_DISABLE_COLORS=1
79 # This get's rid of ugly terminal escape chars in node repl
80 # sometime, I'd like to have completion working in emacs shell for node
81 # the offending chars can be found in lib/readline.js,
82 # things that do like:
83 # stream.write('\x1b[' + (x + 1) + 'G');
84 # We can remove them and keep readline, for example by doing this
85 # to start a repl:
86 #!/usr/bin/env nodejs
87 # var readline = require('readline');
88 # readline.cursorTo = function(a,b,c) {};
89 # readline.clearScreenDown = function(a) {};
90 # const repl = require('repl');
91 # var replServer = repl.start('');
92 #
93 # no prompt, or else readline complete seems to be confused, based
94 # on our column being different? node probably needs to send
95 # different kind of escape sequence that is not ugly. Anyways,
96 # completion doesn't work yet even with the ugly prompt, so whatever
97 #
98 export NODE_NO_READLINE=1
99
100 fi
101
102
103 if [[ $- == *i* ]]; then
104 # for readline-complete.el
105 if [[ $RLC_INSIDE_EMACS ]]; then
106 # all for readline-complete.el
107 stty echo
108 bind 'set horizontal-scroll-mode on'
109 bind 'set print-completions-horizontally on'
110 bind '"\C-i": self-insert'
111 else
112 # arrow keys. for other terminals, see http://unix.stackexchange.com/questions/10806/how-to-change-previous-next-word-shortcut-in-bash
113 if [[ $TERM == "xterm" ]]; then
114 bind '"\e[1;5C": shell-forward-word' 2>/dev/null
115 bind '"\e[1;5D": shell-backward-word' 2>/dev/null
116 else
117 bind '"\eOc": shell-forward-word'
118 bind '"\eOd": shell-backward-word'
119 fi
120 # terminal keys: C-c, C-z. the rest defined by stty -a are, at least in
121 # gnome-terminal, overridden by bash, or disabled by the system
122 stty werase undef lnext undef stop undef start undef
123
124 fi
125
126 fi
127
128
129 # history number. History expansion is good.
130 PS4='$LINENO+ '
131 # history file size limit, set to unlimited.
132 # this needs to be different from the default because
133 # default HISTFILESIZE is 500 and could clobber our history
134 HISTFILESIZE=
135 # max commands 1 session can append/read from history
136 HISTSIZE=100000
137 # my own history size limit based on lines
138 HISTFILELINES=1000000
139 HISTFILE=$HOME/.bh
140 # the time format display when doing the history command
141 # also, setting this makes the history file record time
142 # of each command as seconds from the epoch
143 HISTTIMEFORMAT="%I:%M %p %m/%d "
144 # consecutive duplicate lines don't go in history
145 HISTCONTROL=ignoredups
146 # works in addition to HISTCONTROL to do more flexible things
147 # it could also do the same things as HISTCONTROL and thus replace it,
148 # but meh. dunno why, but just " *" does glob expansion, so use [ ] to avoid it.
149 HISTIGNORE='k *:[ ]*'
150
151 export BC_LINE_LENGTH=0
152
153
154 # note, if I use a machine I don't want files readable by all users, set
155 # umask 077 # If fewer than 4 digits are entered, leading zeros are assumed
156
157 C_DEFAULT_DIR=/a
158
159
160 ###################
161 ## include files ###
162 ###################
163 for _x in /a/bin/distro-functions/src/* /a/bin/!(githtml)/*-function?(s); do
164 source "$_x"
165 done
166 unset _x
167 # so I can share my bashrc
168 for x in /a/bin/bash_unpublished/source-!(.#*); do source $x; done
169 source $(dirname $(readlink -f $BASH_SOURCE))/path_add-function
170 source /a/bin/log-quiet/logq-function
171 path_add /a/exe
172 path_add --ifexists --end /a/opt/adt-bundle*/tools /a/opt/adt-bundle*/platform-tools
173 export WCDHOME=/a
174 # based on readme.debian. dunno if this will break on other distros.
175 _x=/usr/share/wcd/wcd-include.sh
176 if [[ -e $_x ]]; then source $_x; fi
177
178
179 ###############
180 ### aliases ###
181 ###############
182
183 # very few aliases, functions are always preferred.
184
185 # ancient stuff.
186 if [[ $OS == Windows_NT ]]; then
187 alias ffs='cygstart "/c/Program Files (x86)/Mozilla Firefox/firefox.exe" -P scratch'
188 export DISPLAY=nt
189 alias j='command cygpath'
190 alias t='command cygstart'
191 alias cygstart='echo be quick, use the alias "t" instead :\)'
192 alias cygpath='echo be quick, use the alias "j" instead :\)'
193 fi
194
195
196
197 # keep this in mind? good for safety.
198 # alias cp='cp -i'
199 # alias mv='mv -i'
200
201
202 # remove any default aliases for these
203 unalias ls ll grep &>/dev/null ||:
204
205
206
207
208
209
210
211
212
213 #####################
214 ### functions ####
215 #####################
216
217
218 ..() { c ..; }
219 ...() { c ../..; }
220 ....() { c ../../..; }
221 .....() { c ../../../..; }
222 ......() { c ../../../../..; }
223
224
225 # file cut copy and paste, like the text buffers :)
226 # I havn't tested these.
227 _fbufferinit() { # internal use by
228 ! [[ $my_f_tempdir ]] && my_f_tempdir=$(mktemp -d)
229 rm -rf "$my_f_tempdir"/*
230 }
231 fcp() { # file cp
232 _fbufferinit
233 cp "$@" "$my_f_tempdir"/
234 }
235 fct() { # file cut
236 _fbufferinit
237 mv "$@" "$my_f_tempdir"/
238 }
239 fpst() { # file paste
240 [[ $2 ]] && { echo too many arguments; return 1; }
241 target=${1:-.}
242 cp "$my_f_tempdir"/* "$target"
243 }
244
245
246 # todo, update this
247 complete -F _longopt la lower low rlt rld rl lld ts ll dircp ex fcp fct fpst gr
248
249
250 _cdiff-prep() {
251 # join options which are continued to multiples lines onto one line
252 local first=true
253 grep -vE '^([ \t]*#|^[ \t]*$)' "$1" | while IFS= read -r line; do
254 # remove leading spaces/tabs. assumes extglob
255 if [[ $line == "[ ]*" ]]; then
256 line="${line##+( )}"
257 fi
258 if $first; then
259 pastline="$line"
260 first=false
261 elif [[ $line == *=* ]]; then
262 echo "$pastline" >> "$2"
263 pastline="$line"
264 else
265 pastline="$pastline $line"
266 fi
267 done
268 echo "$pastline" >> "$2"
269 }
270
271 _khfix_common() {
272 local h=${1##*@}
273 local x
274 ssh-keygen -R $h -f $(readlink -f ~/.ssh/known_hosts)
275 x=$(timeout 1 ssh -oBatchMode=yes -v $1 |& sed -rn "s/debug1: Connecting to $h \[([^\]*)].*/\1/p")
276 if [[ ! $x ]]; then
277 echo "khfix: ssh failed"
278 return 1
279 fi
280 echo "khfix: removing key for $x"
281 ssh-keygen -R $x -f $(readlink -f ~/.ssh/known_hosts)
282 }
283 khfix() { # known hosts fix
284 _khfix_common "$@" || return 1
285 ssh $1 :
286 }
287 khcopy() {
288 _khfix_common "$@"
289 ssh-copy-id $1
290 }
291
292 a() {
293 beet "${@}"
294 }
295
296 ack() { ack-grep "$@"; }
297
298 astudio() {
299 # googling android emulator libGL error: failed to load driver: r600
300 # lead to http://stackoverflow.com/a/36625175/14456
301 export ANDROID_EMULATOR_USE_SYSTEM_LIBS=1
302 /a/opt/android-studio/bin/studio.sh "$@" &r;
303 }
304
305 b() {
306 # backwards
307 c -
308 }
309
310 bkrun() {
311 # use -p from interactive shell
312 btrbk-run -p "$@"
313 }
314
315 bfg() { java -jar /a/opt/bfg-1.12.14.jar "$@"; }
316
317 btc() {
318 local f=/etc/bitcoin/bitcoin.conf
319 # importprivkey will timeout if using the default of 15 mins.
320 # upped it to 1 hour.
321 bitcoin-cli -rpcclienttimeout=60000 -$(s grep rpcuser= $f) -$(s grep rpcpassword= $f) "$@"
322 }
323
324 btcusd() {
325 local price
326 price="$(curl -s https://api.coinbase.com/v2/prices/BTC-USD/spot | jq -r .data.amount)"
327 printf "$%s\n" "$price"
328 if [[ $1 ]]; then
329 printf "$%.2f\n" "$(echo "scale=4; $price * $1"| bc -l)"
330 fi
331 }
332 usdbtc() {
333 local price
334 price="$(curl -s https://api.coinbase.com/v2/prices/BTC-USD/spot | jq -r .data.amount)"
335 printf "$%s\n" "$price"
336 if [[ $1 ]]; then
337 # 100 mil satoshi / btc. 8 digits after the 1.
338 printf "%.8f btc\n" "$(echo "scale=10; $1 / $price "| bc -l)"
339 fi
340 }
341 satoshi() {
342 local price
343 price="$(curl -s https://api.coinbase.com/v2/prices/BTC-USD/spot | jq -r .data.amount)"
344 price=$(echo "scale=10; $price * 0.00000001"| bc -l)
345 printf "$%f\n" "$price"
346 if [[ $1 ]]; then
347 printf "$%.2f\n" "$(echo "scale=10; $price * $1"| bc -l)"
348 fi
349 }
350
351
352 # c. better cd
353 if [[ $RLC_INSIDE_EMACS ]]; then
354 c() { wcd -c -z 50 -o "$@"; }
355 else
356 # lets see what the fancy terminal does from time to time
357 c() { wcd -c -z 50 "$@"; }
358 fi
359
360 caa() { git commit --amend --no-edit -a; }
361
362 caf() {
363 find -L $1 -type f -not \( -name .svn -prune -o -name .git -prune \
364 -o -name .hg -prune -o -name .editor-backups -prune \
365 -o -name .undo-tree-history -prune \) \
366 -exec bash -lc 'hr; echo "$1"; hr; cat "$1"' _ {} \; 2>/dev/null
367
368 }
369
370 calc() { echo "scale=3; $*" | bc -l; }
371 # no having to type quotes, but also no command history:
372 clc() {
373 local x
374 read -r x
375 echo "scale=3; $x" | bc -l
376 }
377
378 cam() {
379 git commit -am "$*"
380 }
381
382 ccat () { # config cat. see a config without extra lines.
383 grep '^\s*[^[:space:]#]' "$@"
384 }
385
386 cdiff() {
387 # diff config files,
388 # setup for format of postfix, eg:
389 # option = stuff[,]
390 # [more stuff]
391 local pastline
392 local unified="$(mktemp)"
393 local f1="$(mktemp)"
394 local f2="$(mktemp)"
395 _cdiff-prep "$1" "$f1"
396 _cdiff-prep "$2" "$f2"
397 cat "$f1" "$f2" | grep -Po '^[^=]+=' | sort | uniq > "$unified"
398 while IFS= read -r line; do
399 # the default bright red / blue doesn't work in emacs shell
400 dwdiff -cblue,red -A best -d " ," <(grep "^$line" "$f1" || echo ) <(grep "^$line" "$f2" || echo ) | colordiff
401 done < "$unified"
402 }
403
404 cgpl()
405 {
406 if (($#)); then
407 cp /a/bin/data/COPYING "$@"
408 else
409 cp /a/bin/data/COPYING .
410 fi
411 }
412 capache()
413 {
414 if (($#)); then
415 cp /a/bin/data/LICENSE "$@"
416 else
417 cp /a/bin/data/LICENSE .
418 fi
419 }
420 chown() {
421 # makes it so chown -R symlink affects the symlink and its target.
422 if [[ $1 == -R ]]; then
423 shift
424 command chown -h "$@"
425 command chown -R "$@"
426 else
427 command chown "$@"
428 fi
429 }
430
431 cim() {
432 git commit -m "$*"
433 }
434
435 cl() {
436 # choose recent directory. cl = cd list
437 c =
438 }
439
440 chrome() {
441 CHROMIUM_FLAGS='--enable-remote-extensions' chromium &r
442 }
443
444 d() { builtin bg; }
445 complete -A stopped -P '"%' -S '"' d
446
447 dat() { # do all tee, for more complex scripts
448 tee >(ssh frodo bash -l) >(bash -l) >(ssh x2 bash -l) >(ssh tp bash -l)
449 }
450 da() { # do all
451 local host
452 "$@"
453 for host in x2 tp treetowl; do
454 ssh $host "$@"
455 done
456 }
457
458 dc() {
459 diff --strip-trailing-cr -w "$@" # diff content
460 }
461
462 debian_pick_mirror () {
463 # netselect-apt finds a fast mirror.
464 # but we need to replace the mirrors ourselves,
465 # because it doesn't do that. best it can do is
466 # output a basic sources file
467 # here we get the server it found, get the main server we use
468 # then substitute all instances of one for the other in the sources file
469 # and backup original to /etc/apt/sources.list-original.
470 # this is idempotent. the only way to identify debian sources is to
471 # note the original server, so we put it in a comment so we can
472 # identify it later.
473 local file=$(mktemp -d)/f # safe way to get file name without creating one
474 sudo netselect-apt -o "$file" || return 1
475 url=$(grep ^\\w $file | head -n1 | awk '{print $2}')
476 sudo cp -f /etc/apt/sources.list /etc/apt/sources.list-original
477 sudo sed -ri "/http.us.debian.org/ s@( *[^ #]+ +)[^ ]+([^#]+).*@\1$url\2# http.us.debian.org@" /etc/apt/sources.list
478 sudo apt-get update
479 }
480
481 despace() {
482 local x y
483 for x in "$@"; do
484 y="${x// /_}"
485 safe_rename "$x" "$y"
486 done
487 }
488
489 dt() {
490 date "+%A, %B %d, %r" "$@"
491 }
492
493 dus() {
494 du -sh ${@:-*} | sort -h
495 }
496
497
498
499 e() { echo "$@"; }
500
501
502 ediff() {
503 [[ ${#@} == 2 ]] || { echo "error: ediff requires 2 arguments"; return 1; }
504 emacs --eval "(ediff-files \"$1\" \"$2\")"
505 }
506
507
508 envload() { # load environment from a previous: export > file
509 local file=${1:-$HOME/.${USER}_env}
510 eval "$(export | sed 's/^declare -x/export -n/')"
511 while IFS= read -r line; do
512 # declare -x makes variables local to a function
513 eval ${line/#declare -x/export}
514 done < "$file"
515 }
516
517 f() {
518 # cd forward
519 c +
520 }
521
522 fa() {
523 # find array. make an array of file names found by find into $x
524 # argument: find arguments
525 # return: find results in an array $x
526 while read -rd ''; do
527 x+=("$REPLY");
528 done < <(find "$@" -print0);
529 }
530
531 faf() { # find all files
532 find -L $1 -type f -not \( -name .svn -prune -o -name .git -prune \
533 -o -name .hg -prune -o -name .editor-backups -prune \
534 -o -name .undo-tree-history -prune \) 2>/dev/null
535 }
536
537 fastboot() { /a/opt/androidsdk/platform-tools/fastboot "$@"; }
538
539
540 # List of apps to install/update
541 # Create from existing manually installed apps by doing
542 # fdroidcl search -i, then manually removing
543 # automatically installed/preinstalled apps
544 fdroid_pkgs=(
545 at.bitfire.davdroid
546 com.fsck.k9
547 com.ichi2.anki
548 com.notecryptpro
549 com.nutomic.syncthingandroid
550 com.termux
551 de.danoeh.antennapod
552 de.marmaro.krt.ffupdater
553 # riot
554 im.vector.alpha
555 me.ccrama.redditslide
556 net.gaast.giggity
557 net.osmand.plus
558 # caldav tasks thing
559 org.dmfs.tasks
560 org.fdroid.fdroid
561 org.quantumbadger.redreader
562 org.secuso.privacyfriendlyweather
563 org.smssecure.smssecure
564 org.fedorahosted.freeotp
565 com.ghostsq.commander
566 )
567 fdup() {
568 local -A installed updated
569 local p
570 fdroidcl update
571 for p in $(fdroidcl search -i| grep -o "^\S\+"); do
572 installed[$p]=true
573 done
574 for p in $(fdroidcl search -u| grep -o "^\S\+"); do
575 updated[$p]=false
576 done
577 for p in ${fdroid_pkgs[@]}; do
578 ${installed[$p]:-false} || fdroidcl install $p
579 done
580 for p in ${!installed[@]}; do
581 ${updated[$p]:-true} || fdroidcl upgrade $p
582 done
583 }
584
585 ff() {
586 if type -P firefox &>/dev/null; then
587 firefox "$@"
588 else
589 iceweasel "$@"
590 fi
591 }
592
593
594
595 fn() {
596 firefox -P alt "$@" >/dev/null 2>&1
597 }
598
599
600 fsdiff () {
601 local missing=false
602 local dname="${PWD##*/}"
603 local m="/a/tmp/$dname-missing"
604 local d="/a/tmp/$dname-diff"
605 [[ -e $d ]] && rm "$d"
606 [[ -e $m ]] && rm "$m"
607 local msize=0
608 local fsfile
609 while read -r line; do
610 fsfile="$1${line#.}"
611 if [[ -e "$fsfile" ]]; then
612 md5diff "$line" "$fsfile" && tee -a "/a/tmp/$dname-diff" <<< "$fsfile $line"
613 else
614 missing=true
615 echo "$line" >> "$m"
616 msize=$((msize + 1))
617 fi
618 done < <(find -type f )
619 if $missing; then
620 echo "$m"
621 (( msize <= 100 )) && cat $m
622 fi
623 }
624 fsdiff-test() {
625 # expected output, with different tmp dirs
626 # /tmp/tmp.HDPbwMqdC9/c/d ./c/d
627 # /a/tmp/tmp.qLDkYxBYPM-missing
628 # ./b
629 cd $(mktemp -d)
630 echo ok > a
631 echo nok > b
632 mkdir c
633 echo ok > c/d
634 local x=$(mktemp -d)
635 mkdir $x/c
636 echo different > $x/c/d
637 echo ok > $x/a
638 fsdiff $x
639 }
640 rename-test() {
641 # test whether missing files were renamed, generally for use with fsdiff
642 # $1 = fsdiff output file, $2 = directory to compare to. pwd = fsdiff dir
643 # echos non-renamed files
644 local x y found
645 unset sums
646 for x in "$2"/*; do
647 { sums+=( "$(md5sum < "$x")" ) ; } 2>/dev/null
648 done
649 while read -r line; do
650 { missing_sum=$(md5sum < "$line") ; } 2>/dev/null
651 renamed=false
652 for x in "${sums[@]}"; do
653 if [[ $missing_sum == "$x" ]]; then
654 renamed=true
655 break
656 fi
657 done
658 $renamed || echo "$line"
659 done < "$1"
660 return 0
661 }
662
663 feh() {
664 # F = fullscren, z = random, Z = auto zoom
665 command feh -FzZ "$@"
666 }
667
668 funce() {
669 # like -e for functions. returns on error.
670 # at the end of the function, disable with:
671 # trap ERR
672 trap 'echo "${BASH_COMMAND:+BASH_COMMAND=\"$BASH_COMMAND\" }
673 ${FUNCNAME:+FUNCNAME=\"$FUNCNAME\" }${LINENO:+LINENO=\"$LINENO\" }\$?=$?"
674 trap ERR
675 return' ERR
676 }
677
678
679 fw() {
680 firefox -P default "$@" >/dev/null 2>&1
681 }
682
683 getdir () {
684 local help="Usage: getdir [--help] PATH
685 Output the directory of PATH, or just PATH if it is a directory."
686 if [[ $1 == --help ]]; then
687 echo "$help"
688 return 0
689 fi
690 if [[ $# -ne 1 ]]; then
691 echo "getdir error: expected 1 argument, got $#"
692 return 1
693 fi
694 if [[ -d $1 ]]; then
695 echo "$1"
696 else
697 local dir="$(dirname "$1")"
698 if [[ -d $dir ]]; then
699 echo "$dir"
700 else
701 echo "getdir error: directory does not exist"
702 return 1
703 fi
704 fi
705 }
706
707 git_empty_branch() { # start an empty git branch. carefull, it deletes untracked files.
708 [[ $# == 1 ]] || { echo 'need a branch name!'; return 1;}
709 local gitroot
710 gitroot || return 1 # function to set gitroot
711 builtin cd "$gitroot"
712 git symbolic-ref HEAD refs/heads/$1
713 rm .git/index
714 git clean -fdx
715 }
716
717 gitroot() {
718 local help="Usage: gitroot [--help]
719 Print the full path to the root of the current git repo
720
721 Handles being within a .git directory, unlike git rev-parse --show-toplevel,
722 and works in older versions of git which did not have that."
723 if [[ $1 == --help ]]; then
724 echo "$help"
725 return
726 fi
727 local p=$(git rev-parse --git-dir) || { echo "error: not in a git repo" ; return 1; }
728 [[ $p != /* ]] && p=$PWD
729 echo "${p%%/.git}"
730 }
731
732 gmacs() {
733 # quit will prompt if the program crashes.
734 gdb -ex=r -ex=quit --args emacs "$@"; r;
735 }
736
737 gdkill() {
738 # kill the emacs daemon
739 pk1 emacs --daemon
740 }
741
742 gse() {
743 git send-email --notes '--envelope-sender=<ian@iankelling.org>' \
744 --suppress-cc=self "$@"
745 }
746
747 gr() {
748 grep -iIP --color=auto "$@"
749 }
750
751 grr() {
752 if [[ ${#@} == 1 ]]; then
753 grep -riIP --color=auto "$@" .
754 else
755 grep -riIP --color=auto "$@"
756 fi
757 }
758
759 hstatus() {
760 # do git status on published repos
761 cd /a/bin/githtml
762 for x in !(forks) forks/* ian-specific/*; do
763 cd `readlink -f $x`/..
764 hr
765 echo $x
766 i status
767 cd /a/bin/githtml
768 done
769 }
770
771 hl() { # history limit. Write extra history to archive file.
772 # todo: this is not working or not used currently
773 local max_lines linecount tempfile prune_lines x
774 local harchive="${HISTFILE}_archive"
775 for x in "$HISTFILE" "$harchive"; do
776 [[ -e $x ]] || { touch "$x" && echo "notice from hl(): creating $x"; }
777 if [[ ! $x || ! -e $x || ! -w $x || $(stat -c "%u" "$x") != $EUID ]]; then
778 echo "error in hl: history file \$x:$x no good"
779 return 1
780 fi
781 done
782 history -a # save history
783 max_lines=$HISTFILELINES
784 [[ $max_lines =~ ^[0-9]+$ ]] || { echo "error in hl: failed to get max line count"; return 1; }
785 linecount=$(wc -l < $HISTFILE) # pipe so it doesn't output a filename
786 [[ $linecount =~ ^[0-9]+$ ]] || { echo "error in hl: wc failed"; return 1; }
787 if (($linecount > $max_lines)); then
788 prune_lines=$(($linecount - $max_lines))
789 head -n $prune_lines "$HISTFILE" >> "$harchive" \
790 && sed --follow-symlinks -ie "1,${prune_lines}d" $HISTFILE
791 fi
792 }
793
794 hr() { # horizontal row. used to break up output
795 printf "$(tput setaf 5)â–ˆ$(tput sgr0)%.0s" $(seq ${COLUMNS:-60})
796 echo
797 }
798
799 hrcat() { local f; for f; do [[ -f $f ]] || continue; hr; echo "$f"; cat "$f"; done }
800
801
802 i() { git "$@"; }
803 # modified from ~/local/bin/git-completion.bash
804 # other completion commands are mostly taken from bash_completion package
805 complete -o bashdefault -o default -o nospace -F _git i 2>/dev/null \
806 || complete -o default -o nospace -F _git i
807
808 if ! type service &>/dev/null; then
809 service() {
810 echo actually running: systemctl $2 $1
811 systemctl $2 $1
812 }
813 fi
814
815 ic() {
816 # fast commit all
817 git commit -am "$*"
818 }
819
820 idea() {
821 /a/opt/idea-IC-163.7743.44/bin/idea.sh "$@" &r
822 }
823
824 ifn() {
825 # insensitive find
826 find -L . -not \( -name .svn -prune -o -name .git -prune \
827 -o -name .hg -prune -o -name .editor-backups -prune \
828 -o -name .undo-tree-history -prune \) -iname "*$**" 2>/dev/null
829 }
830
831
832 if [[ $OS == Windows_NT ]]; then
833 # cygstart wrapper
834 cs() {
835 cygstart "$@" &
836 }
837 xp() {
838 explorer.exe .
839 }
840 # launch
841 o() {
842 local x=(*$1*)
843 (( ${#x[#]} > 1 )) && { echo "warning ${#x[#]} matches found"; sleep 1; }
844 cygstart *$1* &
845 }
846 else
847 o() {
848 if type gvfs-open &> /dev/null ; then
849 gvfs-open "$@"
850 else
851 xdg-open "$@"
852 fi
853 # another alternative is run-mailcap
854 }
855 fi
856
857
858
859 istext() {
860 grep -Il "" "$@" &>/dev/null
861 }
862
863 jtail() {
864 journalctl -n 10000 -f "$@" | grep -Evi "^(\S+\s+){4}(sudo|sshd|cron)"
865 }
866
867
868 l() {
869 if [[ $PWD == /[iap] ]]; then
870 command ls -A --color=auto -I lost+found "$@"
871 else
872 command ls -A --color=auto "$@"
873 fi
874 }
875
876
877 lcn() { locate -i "*$**"; }
878
879 lld() { ll -d "$@"; }
880
881 low() { # make filenames lowercase, remove bad chars
882 local f new
883 for f in "$@"; do
884 new="${f,,}" # downcase
885 new="${new//[^[:alnum:]._-]/_}" # sub bad chars
886 new="${new#"${new%%[[:alnum:]]*}"}" # remove leading/trailing non-alnum
887 new="${new%"${new##*[[:alnum:]]}"}"
888 # remove bad underscores, like __ and _._
889 new=$(echo $new | sed -r 's/__+/_/g;s/_+([.-])|([.-])_+/\1/g')
890 safe_rename "$f" "$new" || return 1
891 done
892 return 0
893 }
894
895 lower() { # make first letter of filenames lowercase.
896 local x
897 for x in "$@"; do
898 if [[ ${x::1} == [A-Z] ]]; then
899 y=$(tr "[A-Z]" "[a-z]" <<<"${x::1}")"${x:1}"
900 safe_rename "$x" "$y" || return 1
901 fi
902 done
903 }
904
905
906 k() { # history search
907 grep -P --binary-files=text "$@" ${HISTFILE:-~/.bash_history} | tail -n 80;
908 }
909
910
911 make-targets() {
912 # show make targets, via http://stackoverflow.com/questions/3063507/list-goals-targets-in-gnu-make
913 make -qp | awk -F':' '/^[a-zA-Z0-9][^$#\/\t=]*:([^=]|$)/ {split($1,A,/ /);for(i in A)print A[i]}'
914 }
915
916 mbenable() {
917 mb=$1
918 dst=/m/4e/$1
919 src=/m/md/$1
920 set -x
921 mv -T $src $dst || { set +x; return 1; }
922 ln -s -T $dst $src
923 set +x
924 }
925 mbdisable() {
926 mb=$1
927 dst=/m/md/$1
928 src=/m/4e/$1
929 set -x
930 if [[ -L $dst ]]; then rm $dst; fi
931 mv -T $src $dst
932 set +x
933 }
934
935
936 mkc() {
937 mkdir "$1"
938 c "$1"
939 }
940
941 mkdir() { command mkdir -p "$@"; }
942
943 pithos() {
944 cd /
945 export PYTHONPATH=/a/opt/Pithosfly
946 python3 -m pithos&r
947 }
948
949 pakaraoke() {
950 # from http://askubuntu.com/questions/456021/remove-vocals-from-mp3-and-get-only-instrumentals
951 pactl load-module module-ladspa-sink sink_name=Karaoke master=alsa_output.usb-Audioengine_Audioengine_D1-00.analog-stereo plugin=karaoke_1409 label=karaoke control=-30
952 }
953
954
955 pfind() { #find *$1* in $PATH
956 [[ $# != 1 ]] && { echo requires 1 argument; return 1; }
957 local pathArray
958 IFS=: pathArray=($PATH); unset IFS
959 find "${pathArray[@]}" -iname "*$1*"
960 }
961
962 pk1() {
963 local pid
964 pid=($(pgrep -f "$*"))
965 case ${#pid[@]} in
966 1)
967 ps -F $pid
968 m kill $pid
969 ;;
970 0) echo "no pid found" ;;
971 *)
972 ps -F ${pid[@]}
973 ;;
974 esac
975 }
976
977 pick-trash() {
978 # trash-restore lists everything that has been trashed at or below CWD
979 # This picks out files just in CWD, not subdirectories,
980 # which also match grep $1, usually use $1 for a time string
981 # which you get from running restore-trash once first
982 local name x ask
983 local nth=1
984 # last condition is to not ask again for ones we skipped
985 while name="$( echo | restore-trash | gr "$PWD/[^/]\+$" | gr "$1" )" \
986 && [[ $name ]] && (( $(wc -l <<<"$name") >= nth )); do
987 name="$(echo "$name" | head -n $nth | tail -n 1 )"
988 read -p "$name [Y/n] " ask
989 if [[ ! $ask || $ask == [Yy] ]]; then
990 x=$( echo "$name" | gr -o "^\s*[0-9]*" )
991 echo $x | restore-trash > /dev/null
992 elif [[ $ask == [Nn] ]]; then
993 nth=$((nth+1))
994 else
995 return
996 fi
997 done
998 }
999
1000 postconfin() {
1001 local MAPFILE
1002 mapfile -t
1003 local s
1004 [[ $EUID == 0 ]] || s=s
1005 $s postconf -ev "${MAPFILE[@]}"
1006 }
1007
1008 pub() {
1009 rld /a/h/_site/ li:/var/www/iankelling.org/html
1010 }
1011
1012 pubip() { curl -4s https://icanhazip.com; }
1013 whatismyip() { pubip; }
1014
1015 pumpa() {
1016 # fixes the menu bar in xmonad. this won\'t be needed when xmonad
1017 # packages catches up on some changes in future (this is written in
1018 # 4/2017)
1019 #
1020 # geekosaur: so you'll want to upgrade to xmonad 0.13 or else use a
1021 # locally modified XMonad.Hooks.ManageDocks that doesn't set the
1022 # work area; turns out it's impossible to set correctly if you are
1023 # not a fully EWMH compliant desktop environment
1024 #
1025 # geekosaur: chrome shows one failure mode, qt/kde another, other
1026 # gtk apps a third, ... I came up with a setting that works for me
1027 # locally but apparently doesn't work for others, so we joined the
1028 # other tiling window managers in giving up on setting it at all
1029 #
1030 xprop -root -remove _NET_WORKAREA
1031 command pumpa &r
1032 }
1033
1034
1035 pwgen() {
1036 # -m = min length
1037 # -x = max length
1038 # -t = print pronunciation
1039 apg -m 12 -x 16 -t
1040 }
1041
1042 pwlong() {
1043 # -M CLN = use Caps, Lowercase, Numbers
1044 # -n 1 = 1 password
1045 # -a 1 = use random instead of pronounceable algorithm
1046 apg -m 50 -x 70 -n 1 -a 1 -M CLN
1047 }
1048
1049
1050 q() { # start / launch a program in the backround and redir output to null
1051 "$@" &> /dev/null &
1052 }
1053
1054 r() {
1055 exit "$@" 2>/dev/null
1056 }
1057
1058 rbpipe() { rbt post -o --diff-filename=- "$@"; }
1059 rbp() { rbt post -o "$@"; }
1060
1061 rl() {
1062 # rsync, root is required to keep permissions right.
1063 # rsync --archive --human-readable --verbose --itemize-changes --checksum \(-ahvic\) \
1064 # --no-times --delete
1065 # basically, make an exact copy, use checksums instead of file times to be more accurate
1066 rsync -ahvic --delete "$@"
1067 }
1068 rld() {
1069 # like rlu, but don't delete files on the target end which
1070 # do not exist on the original end.
1071 rsync -ahvic "$@"
1072 }
1073 complete -F _rsync -o nospace rld rl rlt
1074
1075 rlt() {
1076 # rl without preserving modification time.
1077 rsync -ahvic --delete --no-t "$@"
1078 }
1079
1080 rlu() { # [OPTS] HOST PATH
1081 # eg. rlu -opts frodo /testpath
1082 # relative paths will expanded with readlink -f.
1083 # useful for selectively sending dirs which have been synced with unison,
1084 # where the path is the same on both hosts.
1085 opts=("${@:1:$#-2}") # 1 to last -2
1086 path="${@:$#}" # last
1087 host="${@:$#-1:1}" # last -1
1088 if [[ $path == .* ]]; then
1089 path=$(readlink -f $path)
1090 fi
1091 # rync here uses checksum instead of time so we don't mess with
1092 # unison relying on time as much. g is for group, same reason
1093 # to keep up with unison.
1094 s rsync -rlpchviog --relative "${opts[@]}" "$path" "root@$host:/";
1095 }
1096
1097
1098 rspicy() { # usage: HOST DOMAIN
1099 # connect to spice vm remote host. use vspicy for local host
1100 local port=$(ssh $1<<EOF
1101 sudo virsh dumpxml $2|grep "<graphics.*type='spice'" | \
1102 sed -rn "s/.*port='([0-9]+).*/\1/p"
1103 EOF
1104 )
1105 if [[ $port ]]; then
1106 spicy -h $1 -p $port
1107 else
1108 echo "error: no port found. check that the domain is running."
1109 fi
1110 }
1111
1112 s() {
1113 # background
1114 # I use a function because otherwise we can't use in a script,
1115 # can't assign to variable.
1116 #
1117 # note: gksudo is recommended for X apps because it does not set the
1118 # home directory to the same, and thus apps writing to ~ fuck things up
1119 # with root owned files.
1120 #
1121 if [[ $EUID != 0 || $1 == -* ]]; then
1122 SUDOD="$PWD" sudo -i "$@"
1123 else
1124 "$@"
1125 fi
1126 }
1127
1128 safe_rename() { # warn and don't rename if file exists.
1129 # mv -n exists, but it's silent
1130 if [[ $# != 2 ]]; then
1131 echo safe_rename error: $# args, need 2 >2
1132 return 1
1133 fi
1134 if [[ $1 != $2 ]]; then # yes, we want to silently ignore this
1135 if [[ -e $2 || -L $2 ]]; then
1136 echo "Cannot rename $1 to $2 as it already exists."
1137 else
1138 mv -vi "$1" "$2"
1139 fi
1140 fi
1141 }
1142
1143
1144 sb() { # sudo bash -c
1145 # use sb instead of s is for sudo redirections,
1146 # eg. sb 'echo "ok fine" > /etc/file'
1147 local SUDOD="$PWD"
1148 sudo -i bash -c "$@"
1149 }
1150 complete -F _root_command s sb
1151
1152 scssl() {
1153 # s gem install scss-lint
1154 pushd /a/opt/thoughtbot-guides
1155 git pull --stat
1156 popd
1157 scss-lint -c /a/opt/thoughtbot-guides/style/sass/.scss-lint.yml "$@"
1158 }
1159
1160 ser() {
1161 local s; [[ $EUID != 0 ]] && s=sudo
1162 if type -p systemctl &>/dev/null; then
1163 $s systemctl $1 $2
1164 else
1165 $s service $2 $1
1166 fi
1167 }
1168
1169 sgo() { # service go
1170 service=$1
1171 ser restart $service
1172 if type -p systemctl &>/dev/null; then
1173 ser enable $service
1174 fi
1175 }
1176
1177
1178 shellck() {
1179 # 2086 = unquoted $var
1180 # 2046 = unquoted $(cmd)
1181 # i had -x as an arg, but debian testing(stretch) doesn't support it
1182 shellcheck -e 2086,2046,2068,2006,2119 "$@"
1183 }
1184
1185
1186 slog() {
1187 # log with script. timing is $1.t and script is $1.s
1188 # -l to save to ~/typescripts/
1189 # -t to add a timestamp to the filenames
1190 local logdir do_stamp arg_base
1191 (( $# >= 1 )) || { echo "arguments wrong"; return 1; }
1192 logdir="/a/dt/"
1193 do_stamp=false
1194 while getopts "lt" option
1195 do
1196 case $option in
1197 l ) arg_base=$logdir ;;
1198 t ) do_stamp=true ;;
1199 esac
1200 done
1201 shift $(($OPTIND - 1))
1202 arg_base+=$1
1203 [[ -e $logdir ]] || mkdir -p $logdir
1204 $do_stamp && arg_base+=$(date +%F.%T%z)
1205 script -t $arg_base.s 2> $arg_base.t
1206 }
1207 splay() { # script replay
1208 #logRoot="$HOME/typescripts/"
1209 #scriptreplay "$logRoot$1.t" "$logRoot$1.s"
1210 scriptreplay "$1.t" "$1.s"
1211 }
1212
1213 sr() {
1214 # sudo redo. be aware, this command may not work right on strange distros or earlier software
1215 if [[ $# == 0 ]]; then
1216 sudo -E bash -c -l "$(history -p '!!')"
1217 else
1218 echo this command redos last history item. no argument is accepted
1219 fi
1220 }
1221
1222 srm () {
1223 # with -ll, less secure but faster.
1224 command srm -ll "$@"
1225 }
1226
1227 srun() {
1228 scp $2 $1:/tmp
1229 ssh $1 /tmp/${2##*/} "${@:2}"
1230 }
1231
1232 swap() {
1233 local tmp
1234 tmp=$(mktemp)
1235 mv $1 $tmp
1236 mv $2 $1
1237 mv $tmp $2
1238 }
1239
1240 t() {
1241 local x
1242 local -a args
1243 if type -t trash-put >/dev/null; then
1244 # skip args that don't exist, or else trash-put will have an error
1245 for x in "$@"; do
1246 if [[ -e $x || -L $x ]]; then
1247 args+=("$x")
1248 fi
1249 done
1250 [[ ! ${args[@]} ]] || trash-put "${args[@]}"
1251 else
1252 rm -rf "$@"
1253 fi
1254 }
1255
1256
1257 tclock() {
1258 clear
1259 date +%l:%_M
1260 len=60
1261 # this goes to full width
1262 #len=${1:-$((COLUMNS -7))}
1263 x=1
1264 while true; do
1265 if (( x == len )); then
1266 end=true
1267 d="$(date +%l:%_M) "
1268 else
1269 end=false
1270 d=$(date +%l:%M:%_S)
1271 fi
1272 echo -en "\r"
1273 echo -n "$d"
1274 for ((i=0; i<x; i++)); do
1275 if (( i % 6 )); then
1276 echo -n _
1277 else
1278 echo -n .
1279 fi
1280 done
1281 if $end; then
1282 echo
1283 x=1
1284 else
1285 x=$((x+1))
1286 fi
1287 sleep 5
1288 done
1289 }
1290
1291
1292 te() {
1293 # test existence / exists
1294 local ret=0
1295 for x in "$@"; do
1296 [[ -e "$x" || -L "$x" ]] || ret=1
1297 done
1298 return $ret
1299 }
1300
1301 testmail() {
1302 declare -gi _seq; _seq+=1
1303 echo "test body" | m mail -s "test mail from $HOSTNAME, $_seq" "${@:-root@localhost}"
1304 # for testing to send from an external address, you can do for example
1305 # -aFrom:ian@iank.bid web-6fnbs@mail-tester.com
1306 # note in exim, you can retry a deferred message
1307 # s exim -M MSG_ID
1308 # MSG_ID is in /var/log/exim4/mainlog, looks like 1ccdnD-0001nh-EN
1309 }
1310
1311 # use -eW to actually modify mailbox
1312 testsievelist() {
1313 sieve-filter ~/sieve/main.sieve "$@" >/a/tmp/slog 2> >(tail) && sed -rn '/^Performed actions:/{n;n;p}' /a/tmp/slog | sort -u
1314 }
1315
1316
1317 testsieve() {
1318 sieve-filter ~/sieve/main.sieve "$@"
1319 }
1320
1321 testexim() {
1322 # testmail above calls sendmail, which is a link to exim/postfix.
1323 # it's docs don't say a way of adding an argument
1324 # to sendmail to turn on debug output. We could make a wrapper, but
1325 # that is a pain. Exim debug args are documented here:
1326 # http://www.exim.org/exim-html-current/doc/html/spec_html/ch-the_exim_command_line.html
1327 #
1328 # http://www.exim.org/exim-html-current/doc/html/spec_html/ch-building_and_installing_exim.html
1329 # note, for exim daemon, you can turn on debug options by
1330 # adding -d, etc to COMMONOPTIONS in
1331 # /etc/default/exim4
1332 # for testing external mail, you need the to address as final cmdline arg
1333 exim -d+tls -t <<'EOF'
1334 From: root@frodo.lan
1335 To: ian@mail.iankelling.org
1336 Subject: Testing Exim
1337
1338 This is a test message.
1339 EOF
1340 }
1341
1342 tm() {
1343 # timer in minutes
1344 # --no-config
1345 (sleep $(calc "$@ * 60") && mpv --no-config --volume 50 /a/bin/data/alarm.mp3) > /dev/null 2>&1 &
1346 }
1347
1348
1349 tu() {
1350 local s;
1351 local dir="$(dirname "$1")"
1352 if [[ -e $1 && ! -w $1 || ! -w $(dirname "$1") ]]; then
1353 s=s;
1354 fi
1355 $s teeu "$@"
1356 }
1357
1358 tx() { # toggle set -x, and the prompt so it doesn't spam
1359 if [[ $- == *x* ]]; then
1360 set +x
1361 PROMPT_COMMAND=prompt_command
1362 else
1363 unset PROMPT_COMMAND
1364 PS1="\w \$ "
1365 set -x
1366 fi
1367 }
1368
1369 psnetns() {
1370 # show all processes in the network namespace $1.
1371 # blank entries appear to be subprocesses/threads
1372 local x netns
1373 netns=$1
1374 ps -w | head -n 1
1375 s find -L /proc/[1-9]*/task/*/ns/net -samefile /run/netns/$netns | cut -d/ -f5 | \
1376 while read l; do
1377 x=$(ps -w --no-headers -p $l);
1378 if [[ $x ]]; then echo "$x"; else echo $l; fi;
1379 done
1380 }
1381
1382 m() { printf "%s\n" "$*"; "$@"; }
1383
1384
1385 vpncmd() {
1386 m s nsenter -t $(pgrep -f "/usr/sbin/openvpn --suppress-timestamps --nobind --config /etc/openvpn/client/client.conf") -n -m "$@"
1387 }
1388 vpnf() {
1389 vpncmd gksudo -u ian firefox &r
1390 }
1391 vpnbash() {
1392 vpncmd bash
1393 }
1394
1395
1396 trg() { transmission-remote-gtk&r; }
1397
1398 # transmission() {
1399 # local pid=$(cat /var/lib/transmission-daemon/transmission-daemon.pid)
1400 # if [[ $pid && -e /proc/$pid ]]; then
1401 # echo "noop. already running."
1402 # return
1403 # fi
1404
1405 # local NAME=transmission-daemon
1406 # local DAEMON=/usr/bin/$NAME
1407 # local duser=debian-transmission
1408
1409 # [ -e /etc/default/$NAME ] && . /etc/default/$NAME
1410 # s ip netns exec vpn sudo -u $duser ionice -c 3 nice -n 19 $DAEMON $OPTIONS
1411 # }
1412
1413 virshrm() {
1414 for x in "$@"; do virsh destroy "$x"; virsh undefine "$x"; done
1415 }
1416
1417 vm-set-listen(){
1418 local t=$(mktemp)
1419 local vm=$1
1420 local ip=$2
1421 s virsh dumpxml $vm | sed -r "s/(<listen.*address=')([^']+)/\1$ip/" | \
1422 sed -r "s/listen='[^']+/listen='$ip/"> $t
1423 s virsh undefine $vm
1424 s virsh define $t
1425 }
1426
1427
1428 vmshare() {
1429 vm-set-listen $1 0.0.0.0
1430 }
1431
1432
1433 vmunshare() {
1434 vm-set-listen $1 127.0.0.1
1435 }
1436
1437 vpn() {
1438 s systemctl start openvpn@client&
1439 journalctl --unit=openvpn@client -f -n0
1440 }
1441
1442
1443 vpnoff() {
1444 s systemctl stop openvpn@client
1445 }
1446
1447
1448 vrm() {
1449 virsh destroy $1
1450 virsh undefine $1
1451 }
1452
1453
1454
1455 vspicy() { # usage: VIRSH_DOMAIN
1456 # connect to vms made with virt-install
1457 spicy -p $(sudo virsh dumpxml "$1"|grep "<graphics.*type='spice'"|\
1458 sed -r "s/.*port='([0-9]+).*/\1/")
1459 }
1460
1461
1462 whatismyip() { curl ipecho.net/plain ; echo; }
1463
1464
1465 #############################
1466 ######### misc stuff ########
1467 #############################
1468
1469 if [[ $- == *i* ]]; then
1470 # commands to run when bash exits normally
1471 trap "hl" EXIT
1472 fi
1473
1474
1475 # temporary variables to test colorization
1476 # some copied from gentoo /etc/bash/bashrc,
1477 use_color=false
1478 # dircolors --print-database uses its own built-in database
1479 # instead of using /etc/DIR_COLORS. Try to use the external file
1480 # first to take advantage of user additions.
1481 safe_term=${TERM//[^[:alnum:]]/?} # sanitize TERM
1482 match_lhs=""
1483 [[ -f ~/.dir_colors ]] && match_lhs="${match_lhs}$(<~/.dir_colors)"
1484 [[ -f /etc/DIR_COLORS ]] && match_lhs="${match_lhs}$(</etc/DIR_COLORS)"
1485 [[ -z ${match_lhs} ]] \
1486 && type -P dircolors >/dev/null \
1487 && match_lhs=$(dircolors --print-database)
1488 # test if our $TERM is in the TERM values in dircolor
1489 [[ $'\n'${match_lhs} == *$'\n'"TERM "${safe_term}* ]] && use_color=true
1490
1491
1492 if ${use_color} && [[ $- == *i* ]]; then
1493
1494 if [[ $XTERM_VERSION == Cygwin* ]]; then
1495 get_term_color() {
1496 for x in "$@"; do
1497 case $x in
1498 underl) echo -n $'\E[4m' ;;
1499 bold) echo -n $'\E[1m' ;;
1500 red) echo -n $'\E[31m' ;;
1501 green) echo -n $'\E[32m' ;;
1502 blue) echo -n $'\E[34m' ;;
1503 cyan) echo -n $'\E[36m' ;;
1504 yellow) echo -n $'\E[33m' ;;
1505 purple) echo -n $'\E[35m' ;;
1506 nocolor) echo -n $'\E(B\E[m' ;;
1507 esac
1508 done
1509 }
1510
1511 else
1512 get_term_color() {
1513 for x in "$@"; do
1514 case $x in
1515 underl) echo -n $(tput smul) ;;
1516 bold) echo -n $(tput bold) ;;
1517 red) echo -n $(tput setaf 1) ;;
1518 green) echo -n $(tput setaf 2) ;;
1519 blue) echo -n $(tput setaf 4) ;;
1520 cyan) echo -n $(tput setaf 6) ;;
1521 yellow) echo -n $(tput setaf 3) ;;
1522 purple) echo -n $(tput setaf 5) ;;
1523 nocolor) echo -n $(tput sgr0) ;; # no font attributes
1524 esac
1525 done
1526 }
1527 fi
1528 else
1529 get_term_color() {
1530 :
1531 }
1532 fi
1533 # Try to keep environment pollution down, EPA loves us.
1534 unset safe_term match_lhs use_color
1535
1536
1537
1538
1539
1540
1541 ###############
1542 # prompt ######
1543 ###############
1544
1545
1546 if [[ $- == *i* ]]; then
1547 # git branch/status prompt function
1548 if [[ $OS != Windows_NT ]]; then
1549 GIT_PS1_SHOWDIRTYSTATE=true
1550 fi
1551 # arch source lopip show -fcation
1552 [[ -r /usr/share/git/git-prompt.sh ]] && source /usr/share/git/git-prompt.sh
1553 # fedora/debian source
1554 [[ -r /usr/share/git-core/contrib/completion/git-prompt.sh ]] && source /usr/share/git-core/contrib/completion/git-prompt.sh
1555
1556 # in case we didn't source git-prompt.sh
1557 if ! declare -f __git_ps1 > /dev/null; then
1558 __git_ps1() {
1559 :
1560 }
1561 fi
1562
1563 # this needs to come before next ps1 stuff
1564 # this stuff needs bash 4, feb 2009,
1565 # old enough to no longer condition on $BASH_VERSION anymore
1566 shopt -s autocd
1567 shopt -s dirspell
1568 PS1='\w'
1569 if [[ $- == *i* ]] && [[ ! $RLC_INSIDE_EMACS ]]; then
1570 PROMPT_DIRTRIM=2
1571 bind -m vi-command B:shell-backward-word
1572 bind -m vi-command W:shell-forward-word
1573 fi
1574
1575 if [[ $SSH_CLIENT ]]; then
1576 PS1="\h $PS1"
1577 fi
1578
1579 prompt_command() {
1580 local return=$? # this MUST COME FIRST
1581 local psc pst ps_char ps_color stale_subvol
1582 unset IFS
1583 history -a # save history
1584
1585 # for titlebar
1586 if [[ ! $DESKTOP_SESSION == xmonad && $TERM == *(screen*|xterm*|rxvt*) ]]; then
1587 # from the screen man page
1588 if [[ $TERM == screen* ]]; then
1589 local title_escape="\033]..2;"
1590 else
1591 local title_escape="\033]0;"
1592 fi
1593 echo -ne "$title_escape${PWD/#$HOME/~} $USER@$HOSTNAME\007"
1594 fi
1595
1596
1597 case $return in
1598 0) ps_color="$(get_term_color blue)"
1599 ps_char='\$'
1600 ;;
1601 1) ps_color="$(get_term_color green)"
1602 ps_char="$return \\$"
1603 ;;
1604 *) ps_color="$(get_term_color yellow)"
1605 ps_char="$return \\$"
1606 ;;
1607 esac
1608 if [[ ! -O . ]]; then # not owner
1609 if [[ -w . ]]; then # writable
1610 ps_color="$(get_term_color bold red)"
1611 else
1612 ps_color="$(get_term_color bold green)"
1613 fi
1614 fi
1615 # I would set nullglob, but bash has had bugs where that
1616 # doesn't work if not in top level.
1617 if [[ -e /nocow/btrfs-stale ]] && ((`ls -AUq /nocow/btrfs-stale|wc -l`)); then
1618 ps_char="! $ps_char"
1619 fi
1620 PS1="${PS1%"${PS1#*[wW]}"} \[$ps_color\]$ps_char\[$(get_term_color nocolor)\] "
1621 # emacs completion doesn't like the git prompt atm, so disabling it.
1622 #PS1="${PS1%"${PS1#*[wW]}"}$(__git_ps1 ' (%s)') \[$ps_color\]$ps_char\[$(get_term_color nocolor)\] "
1623 }
1624 PROMPT_COMMAND=prompt_command
1625 fi
1626
1627
1628
1629 ###########################################
1630 # stuff that makes sense to be at the end #
1631 ###########################################
1632 if [[ "$SUDOD" ]]; then
1633 cd "$SUDOD"
1634 unset SUDOD
1635 elif [[ -d /a ]] && [[ $PWD == $HOME ]] && [[ $- == *i* ]]; then
1636 cd /a
1637 fi
1638
1639
1640 # best practice
1641 unset IFS
1642
1643
1644 # if someone exported $SOE, catch errors
1645 if [[ $SOE ]]; then
1646 errcatch
1647 fi
1648
1649 # I'd prefer to have system-wide, plus user ruby, due to bug in it
1650 # https://github.com/rubygems/rubygems/pull/1002
1651 # further problems: installing multi-user ruby and user ruby,
1652 # you don't get multi-user ruby when you sudo to root, unless its sudo -i.
1653 # There a third hybrid form, which passenger error suggested I use,
1654 # but it didn't actually work.
1655
1656 # in cased I never need this
1657 # rvm for non-interactive shell: modified from https://rvm.io/rvm/basics
1658 #if [[ $(type -t rvm) == file && ! $(type -t ruby) ]]; then
1659 # source $(rvm 1.9.3 do rvm env --path)
1660 #fi
1661
1662 # based on warning from rvmsudo
1663 export rvmsudo_secure_path=1
1664
1665 # for other script I wrote
1666 #export ACME_TINY_PATH=/a/opt/acme-tiny
1667 export ACME_TINY_WRAPPER_CERT_DIR=/p/c/machine_specific/$HOSTNAME/webservercerts
1668
1669 if [[ -s "/usr/local/rvm/scripts/rvm" ]]; then
1670 source "/usr/local/rvm/scripts/rvm"
1671 elif [[ -s $HOME/.rvm/scripts/rvm ]]; then
1672 source $HOME/.rvm/scripts/rvm
1673 fi
1674
1675 export GOPATH=$HOME/go
1676 path_add $GOPATH/bin
1677
1678
1679 path_add --end ~/.npm-global
1680
1681
1682 # didn't get drush working, if I did, this seems like the
1683 # only good thing to include for it.
1684 # Include Drush completion.
1685 # if [ -f "/home/ian/.drush/drush.complete.sh" ] ; then
1686 # source /home/ian/.drush/drush.complete.sh
1687 # fi
1688
1689
1690 # https://wiki.archlinux.org/index.php/Xinitrc#Autostart_X_at_login
1691 # i added an extra condition as gentoo xorg guide says depending on
1692 # $DISPLAY is fragile.
1693 if [[ ! $DISPLAY && $XDG_VTNR == 1 ]] && shopt -q login_shell && isarch; then
1694 exec startx
1695 fi
1696
1697
1698 # ensure no bad programs appending to this file will have an affect
1699 return 0