small fdroid update
[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 # https://forum.xda-developers.com/android/software-hacking/wip-selinux-capable-superuser-t3216394
567 me.phh.superuser
568 )
569 fdup() {
570 local -A installed updated
571 local p
572 fdroidcl update
573 for p in $(fdroidcl search -i| grep -o "^\S\+"); do
574 installed[$p]=true
575 done
576 for p in $(fdroidcl search -u| grep -o "^\S\+"); do
577 updated[$p]=false
578 done
579 for p in ${fdroid_pkgs[@]}; do
580 ${installed[$p]:-false} || fdroidcl install $p
581 done
582 for p in ${!installed[@]}; do
583 ${updated[$p]:-true} || fdroidcl upgrade $p
584 done
585 }
586
587 ff() {
588 if type -P firefox &>/dev/null; then
589 firefox "$@"
590 else
591 iceweasel "$@"
592 fi
593 }
594
595
596
597 fn() {
598 firefox -P alt "$@" >/dev/null 2>&1
599 }
600
601
602 fsdiff () {
603 local missing=false
604 local dname="${PWD##*/}"
605 local m="/a/tmp/$dname-missing"
606 local d="/a/tmp/$dname-diff"
607 [[ -e $d ]] && rm "$d"
608 [[ -e $m ]] && rm "$m"
609 local msize=0
610 local fsfile
611 while read -r line; do
612 fsfile="$1${line#.}"
613 if [[ -e "$fsfile" ]]; then
614 md5diff "$line" "$fsfile" && tee -a "/a/tmp/$dname-diff" <<< "$fsfile $line"
615 else
616 missing=true
617 echo "$line" >> "$m"
618 msize=$((msize + 1))
619 fi
620 done < <(find -type f )
621 if $missing; then
622 echo "$m"
623 (( msize <= 100 )) && cat $m
624 fi
625 }
626 fsdiff-test() {
627 # expected output, with different tmp dirs
628 # /tmp/tmp.HDPbwMqdC9/c/d ./c/d
629 # /a/tmp/tmp.qLDkYxBYPM-missing
630 # ./b
631 cd $(mktemp -d)
632 echo ok > a
633 echo nok > b
634 mkdir c
635 echo ok > c/d
636 local x=$(mktemp -d)
637 mkdir $x/c
638 echo different > $x/c/d
639 echo ok > $x/a
640 fsdiff $x
641 }
642 rename-test() {
643 # test whether missing files were renamed, generally for use with fsdiff
644 # $1 = fsdiff output file, $2 = directory to compare to. pwd = fsdiff dir
645 # echos non-renamed files
646 local x y found
647 unset sums
648 for x in "$2"/*; do
649 { sums+=( "$(md5sum < "$x")" ) ; } 2>/dev/null
650 done
651 while read -r line; do
652 { missing_sum=$(md5sum < "$line") ; } 2>/dev/null
653 renamed=false
654 for x in "${sums[@]}"; do
655 if [[ $missing_sum == "$x" ]]; then
656 renamed=true
657 break
658 fi
659 done
660 $renamed || echo "$line"
661 done < "$1"
662 return 0
663 }
664
665 feh() {
666 # F = fullscren, z = random, Z = auto zoom
667 command feh -FzZ "$@"
668 }
669
670 funce() {
671 # like -e for functions. returns on error.
672 # at the end of the function, disable with:
673 # trap ERR
674 trap 'echo "${BASH_COMMAND:+BASH_COMMAND=\"$BASH_COMMAND\" }
675 ${FUNCNAME:+FUNCNAME=\"$FUNCNAME\" }${LINENO:+LINENO=\"$LINENO\" }\$?=$?"
676 trap ERR
677 return' ERR
678 }
679
680
681 fw() {
682 firefox -P default "$@" >/dev/null 2>&1
683 }
684
685 getdir () {
686 local help="Usage: getdir [--help] PATH
687 Output the directory of PATH, or just PATH if it is a directory."
688 if [[ $1 == --help ]]; then
689 echo "$help"
690 return 0
691 fi
692 if [[ $# -ne 1 ]]; then
693 echo "getdir error: expected 1 argument, got $#"
694 return 1
695 fi
696 if [[ -d $1 ]]; then
697 echo "$1"
698 else
699 local dir="$(dirname "$1")"
700 if [[ -d $dir ]]; then
701 echo "$dir"
702 else
703 echo "getdir error: directory does not exist"
704 return 1
705 fi
706 fi
707 }
708
709 git_empty_branch() { # start an empty git branch. carefull, it deletes untracked files.
710 [[ $# == 1 ]] || { echo 'need a branch name!'; return 1;}
711 local gitroot
712 gitroot || return 1 # function to set gitroot
713 builtin cd "$gitroot"
714 git symbolic-ref HEAD refs/heads/$1
715 rm .git/index
716 git clean -fdx
717 }
718
719 gitroot() {
720 local help="Usage: gitroot [--help]
721 Print the full path to the root of the current git repo
722
723 Handles being within a .git directory, unlike git rev-parse --show-toplevel,
724 and works in older versions of git which did not have that."
725 if [[ $1 == --help ]]; then
726 echo "$help"
727 return
728 fi
729 local p=$(git rev-parse --git-dir) || { echo "error: not in a git repo" ; return 1; }
730 [[ $p != /* ]] && p=$PWD
731 echo "${p%%/.git}"
732 }
733
734 gmacs() {
735 # quit will prompt if the program crashes.
736 gdb -ex=r -ex=quit --args emacs "$@"; r;
737 }
738
739 gdkill() {
740 # kill the emacs daemon
741 pk1 emacs --daemon
742 }
743
744 gse() {
745 git send-email --notes '--envelope-sender=<ian@iankelling.org>' \
746 --suppress-cc=self "$@"
747 }
748
749 gr() {
750 grep -iIP --color=auto "$@"
751 }
752
753 grr() {
754 if [[ ${#@} == 1 ]]; then
755 grep -riIP --color=auto "$@" .
756 else
757 grep -riIP --color=auto "$@"
758 fi
759 }
760
761 hstatus() {
762 # do git status on published repos
763 cd /a/bin/githtml
764 for x in !(forks) forks/* ian-specific/*; do
765 cd `readlink -f $x`/..
766 hr
767 echo $x
768 i status
769 cd /a/bin/githtml
770 done
771 }
772
773 hl() { # history limit. Write extra history to archive file.
774 # todo: this is not working or not used currently
775 local max_lines linecount tempfile prune_lines x
776 local harchive="${HISTFILE}_archive"
777 for x in "$HISTFILE" "$harchive"; do
778 [[ -e $x ]] || { touch "$x" && echo "notice from hl(): creating $x"; }
779 if [[ ! $x || ! -e $x || ! -w $x || $(stat -c "%u" "$x") != $EUID ]]; then
780 echo "error in hl: history file \$x:$x no good"
781 return 1
782 fi
783 done
784 history -a # save history
785 max_lines=$HISTFILELINES
786 [[ $max_lines =~ ^[0-9]+$ ]] || { echo "error in hl: failed to get max line count"; return 1; }
787 linecount=$(wc -l < $HISTFILE) # pipe so it doesn't output a filename
788 [[ $linecount =~ ^[0-9]+$ ]] || { echo "error in hl: wc failed"; return 1; }
789 if (($linecount > $max_lines)); then
790 prune_lines=$(($linecount - $max_lines))
791 head -n $prune_lines "$HISTFILE" >> "$harchive" \
792 && sed --follow-symlinks -ie "1,${prune_lines}d" $HISTFILE
793 fi
794 }
795
796 hr() { # horizontal row. used to break up output
797 printf "$(tput setaf 5)â–ˆ$(tput sgr0)%.0s" $(seq ${COLUMNS:-60})
798 echo
799 }
800
801 hrcat() { local f; for f; do [[ -f $f ]] || continue; hr; echo "$f"; cat "$f"; done }
802
803
804 i() { git "$@"; }
805 # modified from ~/local/bin/git-completion.bash
806 # other completion commands are mostly taken from bash_completion package
807 complete -o bashdefault -o default -o nospace -F _git i 2>/dev/null \
808 || complete -o default -o nospace -F _git i
809
810 if ! type service &>/dev/null; then
811 service() {
812 echo actually running: systemctl $2 $1
813 systemctl $2 $1
814 }
815 fi
816
817 ic() {
818 # fast commit all
819 git commit -am "$*"
820 }
821
822 idea() {
823 /a/opt/idea-IC-163.7743.44/bin/idea.sh "$@" &r
824 }
825
826 ifn() {
827 # insensitive find
828 find -L . -not \( -name .svn -prune -o -name .git -prune \
829 -o -name .hg -prune -o -name .editor-backups -prune \
830 -o -name .undo-tree-history -prune \) -iname "*$**" 2>/dev/null
831 }
832
833
834 if [[ $OS == Windows_NT ]]; then
835 # cygstart wrapper
836 cs() {
837 cygstart "$@" &
838 }
839 xp() {
840 explorer.exe .
841 }
842 # launch
843 o() {
844 local x=(*$1*)
845 (( ${#x[#]} > 1 )) && { echo "warning ${#x[#]} matches found"; sleep 1; }
846 cygstart *$1* &
847 }
848 else
849 o() {
850 if type gvfs-open &> /dev/null ; then
851 gvfs-open "$@"
852 else
853 xdg-open "$@"
854 fi
855 # another alternative is run-mailcap
856 }
857 fi
858
859
860
861 istext() {
862 grep -Il "" "$@" &>/dev/null
863 }
864
865 jtail() {
866 journalctl -n 10000 -f "$@" | grep -Evi "^(\S+\s+){4}(sudo|sshd|cron)"
867 }
868
869
870 l() {
871 if [[ $PWD == /[iap] ]]; then
872 command ls -A --color=auto -I lost+found "$@"
873 else
874 command ls -A --color=auto "$@"
875 fi
876 }
877
878
879 lcn() { locate -i "*$**"; }
880
881 lld() { ll -d "$@"; }
882
883 low() { # make filenames lowercase, remove bad chars
884 local f new
885 for f in "$@"; do
886 new="${f,,}" # downcase
887 new="${new//[^[:alnum:]._-]/_}" # sub bad chars
888 new="${new#"${new%%[[:alnum:]]*}"}" # remove leading/trailing non-alnum
889 new="${new%"${new##*[[:alnum:]]}"}"
890 # remove bad underscores, like __ and _._
891 new=$(echo $new | sed -r 's/__+/_/g;s/_+([.-])|([.-])_+/\1/g')
892 safe_rename "$f" "$new" || return 1
893 done
894 return 0
895 }
896
897 lower() { # make first letter of filenames lowercase.
898 local x
899 for x in "$@"; do
900 if [[ ${x::1} == [A-Z] ]]; then
901 y=$(tr "[A-Z]" "[a-z]" <<<"${x::1}")"${x:1}"
902 safe_rename "$x" "$y" || return 1
903 fi
904 done
905 }
906
907
908 k() { # history search
909 grep -P --binary-files=text "$@" ${HISTFILE:-~/.bash_history} | tail -n 80;
910 }
911
912
913 make-targets() {
914 # show make targets, via http://stackoverflow.com/questions/3063507/list-goals-targets-in-gnu-make
915 make -qp | awk -F':' '/^[a-zA-Z0-9][^$#\/\t=]*:([^=]|$)/ {split($1,A,/ /);for(i in A)print A[i]}'
916 }
917
918 mbenable() {
919 mb=$1
920 dst=/m/4e/$1
921 src=/m/md/$1
922 set -x
923 mv -T $src $dst || { set +x; return 1; }
924 ln -s -T $dst $src
925 set +x
926 }
927 mbdisable() {
928 mb=$1
929 dst=/m/md/$1
930 src=/m/4e/$1
931 set -x
932 if [[ -L $dst ]]; then rm $dst; fi
933 mv -T $src $dst
934 set +x
935 }
936
937
938 mkc() {
939 mkdir "$1"
940 c "$1"
941 }
942
943 mkdir() { command mkdir -p "$@"; }
944
945 pithos() {
946 cd /
947 export PYTHONPATH=/a/opt/Pithosfly
948 python3 -m pithos&r
949 }
950
951 pakaraoke() {
952 # from http://askubuntu.com/questions/456021/remove-vocals-from-mp3-and-get-only-instrumentals
953 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
954 }
955
956
957 pfind() { #find *$1* in $PATH
958 [[ $# != 1 ]] && { echo requires 1 argument; return 1; }
959 local pathArray
960 IFS=: pathArray=($PATH); unset IFS
961 find "${pathArray[@]}" -iname "*$1*"
962 }
963
964 pk1() {
965 local pid
966 pid=($(pgrep -f "$*"))
967 case ${#pid[@]} in
968 1)
969 ps -F $pid
970 m kill $pid
971 ;;
972 0) echo "no pid found" ;;
973 *)
974 ps -F ${pid[@]}
975 ;;
976 esac
977 }
978
979 pick-trash() {
980 # trash-restore lists everything that has been trashed at or below CWD
981 # This picks out files just in CWD, not subdirectories,
982 # which also match grep $1, usually use $1 for a time string
983 # which you get from running restore-trash once first
984 local name x ask
985 local nth=1
986 # last condition is to not ask again for ones we skipped
987 while name="$( echo | restore-trash | gr "$PWD/[^/]\+$" | gr "$1" )" \
988 && [[ $name ]] && (( $(wc -l <<<"$name") >= nth )); do
989 name="$(echo "$name" | head -n $nth | tail -n 1 )"
990 read -p "$name [Y/n] " ask
991 if [[ ! $ask || $ask == [Yy] ]]; then
992 x=$( echo "$name" | gr -o "^\s*[0-9]*" )
993 echo $x | restore-trash > /dev/null
994 elif [[ $ask == [Nn] ]]; then
995 nth=$((nth+1))
996 else
997 return
998 fi
999 done
1000 }
1001
1002 postconfin() {
1003 local MAPFILE
1004 mapfile -t
1005 local s
1006 [[ $EUID == 0 ]] || s=s
1007 $s postconf -ev "${MAPFILE[@]}"
1008 }
1009
1010 pub() {
1011 rld /a/h/_site/ li:/var/www/iankelling.org/html
1012 }
1013
1014 pubip() { curl -4s https://icanhazip.com; }
1015 whatismyip() { pubip; }
1016
1017 pumpa() {
1018 # fixes the menu bar in xmonad. this won\'t be needed when xmonad
1019 # packages catches up on some changes in future (this is written in
1020 # 4/2017)
1021 #
1022 # geekosaur: so you'll want to upgrade to xmonad 0.13 or else use a
1023 # locally modified XMonad.Hooks.ManageDocks that doesn't set the
1024 # work area; turns out it's impossible to set correctly if you are
1025 # not a fully EWMH compliant desktop environment
1026 #
1027 # geekosaur: chrome shows one failure mode, qt/kde another, other
1028 # gtk apps a third, ... I came up with a setting that works for me
1029 # locally but apparently doesn't work for others, so we joined the
1030 # other tiling window managers in giving up on setting it at all
1031 #
1032 xprop -root -remove _NET_WORKAREA
1033 command pumpa &r
1034 }
1035
1036
1037 pwgen() {
1038 # -m = min length
1039 # -x = max length
1040 # -t = print pronunciation
1041 apg -m 12 -x 16 -t
1042 }
1043
1044 pwlong() {
1045 # -M CLN = use Caps, Lowercase, Numbers
1046 # -n 1 = 1 password
1047 # -a 1 = use random instead of pronounceable algorithm
1048 apg -m 50 -x 70 -n 1 -a 1 -M CLN
1049 }
1050
1051
1052 q() { # start / launch a program in the backround and redir output to null
1053 "$@" &> /dev/null &
1054 }
1055
1056 r() {
1057 exit "$@" 2>/dev/null
1058 }
1059
1060 rbpipe() { rbt post -o --diff-filename=- "$@"; }
1061 rbp() { rbt post -o "$@"; }
1062
1063 rl() {
1064 # rsync, root is required to keep permissions right.
1065 # rsync --archive --human-readable --verbose --itemize-changes --checksum \(-ahvic\) \
1066 # --no-times --delete
1067 # basically, make an exact copy, use checksums instead of file times to be more accurate
1068 rsync -ahvic --delete "$@"
1069 }
1070 rld() {
1071 # like rlu, but don't delete files on the target end which
1072 # do not exist on the original end.
1073 rsync -ahvic "$@"
1074 }
1075 complete -F _rsync -o nospace rld rl rlt
1076
1077 rlt() {
1078 # rl without preserving modification time.
1079 rsync -ahvic --delete --no-t "$@"
1080 }
1081
1082 rlu() { # [OPTS] HOST PATH
1083 # eg. rlu -opts frodo /testpath
1084 # relative paths will expanded with readlink -f.
1085 # useful for selectively sending dirs which have been synced with unison,
1086 # where the path is the same on both hosts.
1087 opts=("${@:1:$#-2}") # 1 to last -2
1088 path="${@:$#}" # last
1089 host="${@:$#-1:1}" # last -1
1090 if [[ $path == .* ]]; then
1091 path=$(readlink -f $path)
1092 fi
1093 # rync here uses checksum instead of time so we don't mess with
1094 # unison relying on time as much. g is for group, same reason
1095 # to keep up with unison.
1096 s rsync -rlpchviog --relative "${opts[@]}" "$path" "root@$host:/";
1097 }
1098
1099
1100 rspicy() { # usage: HOST DOMAIN
1101 # connect to spice vm remote host. use vspicy for local host
1102 local port=$(ssh $1<<EOF
1103 sudo virsh dumpxml $2|grep "<graphics.*type='spice'" | \
1104 sed -rn "s/.*port='([0-9]+).*/\1/p"
1105 EOF
1106 )
1107 if [[ $port ]]; then
1108 spicy -h $1 -p $port
1109 else
1110 echo "error: no port found. check that the domain is running."
1111 fi
1112 }
1113
1114 s() {
1115 # background
1116 # I use a function because otherwise we can't use in a script,
1117 # can't assign to variable.
1118 #
1119 # note: gksudo is recommended for X apps because it does not set the
1120 # home directory to the same, and thus apps writing to ~ fuck things up
1121 # with root owned files.
1122 #
1123 if [[ $EUID != 0 || $1 == -* ]]; then
1124 SUDOD="$PWD" sudo -i "$@"
1125 else
1126 "$@"
1127 fi
1128 }
1129
1130 safe_rename() { # warn and don't rename if file exists.
1131 # mv -n exists, but it's silent
1132 if [[ $# != 2 ]]; then
1133 echo safe_rename error: $# args, need 2 >2
1134 return 1
1135 fi
1136 if [[ $1 != $2 ]]; then # yes, we want to silently ignore this
1137 if [[ -e $2 || -L $2 ]]; then
1138 echo "Cannot rename $1 to $2 as it already exists."
1139 else
1140 mv -vi "$1" "$2"
1141 fi
1142 fi
1143 }
1144
1145
1146 sb() { # sudo bash -c
1147 # use sb instead of s is for sudo redirections,
1148 # eg. sb 'echo "ok fine" > /etc/file'
1149 local SUDOD="$PWD"
1150 sudo -i bash -c "$@"
1151 }
1152 complete -F _root_command s sb
1153
1154 scssl() {
1155 # s gem install scss-lint
1156 pushd /a/opt/thoughtbot-guides
1157 git pull --stat
1158 popd
1159 scss-lint -c /a/opt/thoughtbot-guides/style/sass/.scss-lint.yml "$@"
1160 }
1161
1162 ser() {
1163 local s; [[ $EUID != 0 ]] && s=sudo
1164 if type -p systemctl &>/dev/null; then
1165 $s systemctl $1 $2
1166 else
1167 $s service $2 $1
1168 fi
1169 }
1170
1171 sgo() { # service go
1172 service=$1
1173 ser restart $service
1174 if type -p systemctl &>/dev/null; then
1175 ser enable $service
1176 fi
1177 }
1178
1179
1180 shellck() {
1181 # 2086 = unquoted $var
1182 # 2046 = unquoted $(cmd)
1183 # i had -x as an arg, but debian testing(stretch) doesn't support it
1184 shellcheck -e 2086,2046,2068,2006,2119 "$@"
1185 }
1186
1187
1188 slog() {
1189 # log with script. timing is $1.t and script is $1.s
1190 # -l to save to ~/typescripts/
1191 # -t to add a timestamp to the filenames
1192 local logdir do_stamp arg_base
1193 (( $# >= 1 )) || { echo "arguments wrong"; return 1; }
1194 logdir="/a/dt/"
1195 do_stamp=false
1196 while getopts "lt" option
1197 do
1198 case $option in
1199 l ) arg_base=$logdir ;;
1200 t ) do_stamp=true ;;
1201 esac
1202 done
1203 shift $(($OPTIND - 1))
1204 arg_base+=$1
1205 [[ -e $logdir ]] || mkdir -p $logdir
1206 $do_stamp && arg_base+=$(date +%F.%T%z)
1207 script -t $arg_base.s 2> $arg_base.t
1208 }
1209 splay() { # script replay
1210 #logRoot="$HOME/typescripts/"
1211 #scriptreplay "$logRoot$1.t" "$logRoot$1.s"
1212 scriptreplay "$1.t" "$1.s"
1213 }
1214
1215 sr() {
1216 # sudo redo. be aware, this command may not work right on strange distros or earlier software
1217 if [[ $# == 0 ]]; then
1218 sudo -E bash -c -l "$(history -p '!!')"
1219 else
1220 echo this command redos last history item. no argument is accepted
1221 fi
1222 }
1223
1224 srm () {
1225 # with -ll, less secure but faster.
1226 command srm -ll "$@"
1227 }
1228
1229 srun() {
1230 scp $2 $1:/tmp
1231 ssh $1 /tmp/${2##*/} "${@:2}"
1232 }
1233
1234 swap() {
1235 local tmp
1236 tmp=$(mktemp)
1237 mv $1 $tmp
1238 mv $2 $1
1239 mv $tmp $2
1240 }
1241
1242 t() {
1243 local x
1244 local -a args
1245 if type -t trash-put >/dev/null; then
1246 # skip args that don't exist, or else trash-put will have an error
1247 for x in "$@"; do
1248 if [[ -e $x || -L $x ]]; then
1249 args+=("$x")
1250 fi
1251 done
1252 [[ ! ${args[@]} ]] || trash-put "${args[@]}"
1253 else
1254 rm -rf "$@"
1255 fi
1256 }
1257
1258
1259 tclock() {
1260 clear
1261 date +%l:%_M
1262 len=60
1263 # this goes to full width
1264 #len=${1:-$((COLUMNS -7))}
1265 x=1
1266 while true; do
1267 if (( x == len )); then
1268 end=true
1269 d="$(date +%l:%_M) "
1270 else
1271 end=false
1272 d=$(date +%l:%M:%_S)
1273 fi
1274 echo -en "\r"
1275 echo -n "$d"
1276 for ((i=0; i<x; i++)); do
1277 if (( i % 6 )); then
1278 echo -n _
1279 else
1280 echo -n .
1281 fi
1282 done
1283 if $end; then
1284 echo
1285 x=1
1286 else
1287 x=$((x+1))
1288 fi
1289 sleep 5
1290 done
1291 }
1292
1293
1294 te() {
1295 # test existence / exists
1296 local ret=0
1297 for x in "$@"; do
1298 [[ -e "$x" || -L "$x" ]] || ret=1
1299 done
1300 return $ret
1301 }
1302
1303 testmail() {
1304 declare -gi _seq; _seq+=1
1305 echo "test body" | m mail -s "test mail from $HOSTNAME, $_seq" "${@:-root@localhost}"
1306 # for testing to send from an external address, you can do for example
1307 # -aFrom:ian@iank.bid web-6fnbs@mail-tester.com
1308 # note in exim, you can retry a deferred message
1309 # s exim -M MSG_ID
1310 # MSG_ID is in /var/log/exim4/mainlog, looks like 1ccdnD-0001nh-EN
1311 }
1312
1313 # use -eW to actually modify mailbox
1314 testsievelist() {
1315 sieve-filter ~/sieve/main.sieve "$@" >/a/tmp/slog 2> >(tail) && sed -rn '/^Performed actions:/{n;n;p}' /a/tmp/slog | sort -u
1316 }
1317
1318
1319 testsieve() {
1320 sieve-filter ~/sieve/main.sieve "$@"
1321 }
1322
1323 testexim() {
1324 # testmail above calls sendmail, which is a link to exim/postfix.
1325 # it's docs don't say a way of adding an argument
1326 # to sendmail to turn on debug output. We could make a wrapper, but
1327 # that is a pain. Exim debug args are documented here:
1328 # http://www.exim.org/exim-html-current/doc/html/spec_html/ch-the_exim_command_line.html
1329 #
1330 # http://www.exim.org/exim-html-current/doc/html/spec_html/ch-building_and_installing_exim.html
1331 # note, for exim daemon, you can turn on debug options by
1332 # adding -d, etc to COMMONOPTIONS in
1333 # /etc/default/exim4
1334 # for testing external mail, you need the to address as final cmdline arg
1335 exim -d+tls -t <<'EOF'
1336 From: root@frodo.lan
1337 To: ian@mail.iankelling.org
1338 Subject: Testing Exim
1339
1340 This is a test message.
1341 EOF
1342 }
1343
1344 tm() {
1345 # timer in minutes
1346 # --no-config
1347 (sleep $(calc "$@ * 60") && mpv --no-config --volume 50 /a/bin/data/alarm.mp3) > /dev/null 2>&1 &
1348 }
1349
1350
1351 tu() {
1352 local s;
1353 local dir="$(dirname "$1")"
1354 if [[ -e $1 && ! -w $1 || ! -w $(dirname "$1") ]]; then
1355 s=s;
1356 fi
1357 $s teeu "$@"
1358 }
1359
1360 tx() { # toggle set -x, and the prompt so it doesn't spam
1361 if [[ $- == *x* ]]; then
1362 set +x
1363 PROMPT_COMMAND=prompt_command
1364 else
1365 unset PROMPT_COMMAND
1366 PS1="\w \$ "
1367 set -x
1368 fi
1369 }
1370
1371 psnetns() {
1372 # show all processes in the network namespace $1.
1373 # blank entries appear to be subprocesses/threads
1374 local x netns
1375 netns=$1
1376 ps -w | head -n 1
1377 s find -L /proc/[1-9]*/task/*/ns/net -samefile /run/netns/$netns | cut -d/ -f5 | \
1378 while read l; do
1379 x=$(ps -w --no-headers -p $l);
1380 if [[ $x ]]; then echo "$x"; else echo $l; fi;
1381 done
1382 }
1383
1384 m() { printf "%s\n" "$*"; "$@"; }
1385
1386
1387 vpncmd() {
1388 m s nsenter -t $(pgrep -f "/usr/sbin/openvpn --suppress-timestamps --nobind --config /etc/openvpn/client/client.conf") -n -m "$@"
1389 }
1390 vpnf() {
1391 vpncmd gksudo -u ian firefox &r
1392 }
1393 vpnbash() {
1394 vpncmd bash
1395 }
1396
1397
1398 trg() { transmission-remote-gtk&r; }
1399
1400 # transmission() {
1401 # local pid=$(cat /var/lib/transmission-daemon/transmission-daemon.pid)
1402 # if [[ $pid && -e /proc/$pid ]]; then
1403 # echo "noop. already running."
1404 # return
1405 # fi
1406
1407 # local NAME=transmission-daemon
1408 # local DAEMON=/usr/bin/$NAME
1409 # local duser=debian-transmission
1410
1411 # [ -e /etc/default/$NAME ] && . /etc/default/$NAME
1412 # s ip netns exec vpn sudo -u $duser ionice -c 3 nice -n 19 $DAEMON $OPTIONS
1413 # }
1414
1415 virshrm() {
1416 for x in "$@"; do virsh destroy "$x"; virsh undefine "$x"; done
1417 }
1418
1419 vm-set-listen(){
1420 local t=$(mktemp)
1421 local vm=$1
1422 local ip=$2
1423 s virsh dumpxml $vm | sed -r "s/(<listen.*address=')([^']+)/\1$ip/" | \
1424 sed -r "s/listen='[^']+/listen='$ip/"> $t
1425 s virsh undefine $vm
1426 s virsh define $t
1427 }
1428
1429
1430 vmshare() {
1431 vm-set-listen $1 0.0.0.0
1432 }
1433
1434
1435 vmunshare() {
1436 vm-set-listen $1 127.0.0.1
1437 }
1438
1439 vpn() {
1440 s systemctl start openvpn@client&
1441 journalctl --unit=openvpn@client -f -n0
1442 }
1443
1444
1445 vpnoff() {
1446 s systemctl stop openvpn@client
1447 }
1448
1449
1450 vrm() {
1451 virsh destroy $1
1452 virsh undefine $1
1453 }
1454
1455
1456
1457 vspicy() { # usage: VIRSH_DOMAIN
1458 # connect to vms made with virt-install
1459 spicy -p $(sudo virsh dumpxml "$1"|grep "<graphics.*type='spice'"|\
1460 sed -r "s/.*port='([0-9]+).*/\1/")
1461 }
1462
1463
1464 whatismyip() { curl ipecho.net/plain ; echo; }
1465
1466
1467 #############################
1468 ######### misc stuff ########
1469 #############################
1470
1471 if [[ $- == *i* ]]; then
1472 # commands to run when bash exits normally
1473 trap "hl" EXIT
1474 fi
1475
1476
1477 # temporary variables to test colorization
1478 # some copied from gentoo /etc/bash/bashrc,
1479 use_color=false
1480 # dircolors --print-database uses its own built-in database
1481 # instead of using /etc/DIR_COLORS. Try to use the external file
1482 # first to take advantage of user additions.
1483 safe_term=${TERM//[^[:alnum:]]/?} # sanitize TERM
1484 match_lhs=""
1485 [[ -f ~/.dir_colors ]] && match_lhs="${match_lhs}$(<~/.dir_colors)"
1486 [[ -f /etc/DIR_COLORS ]] && match_lhs="${match_lhs}$(</etc/DIR_COLORS)"
1487 [[ -z ${match_lhs} ]] \
1488 && type -P dircolors >/dev/null \
1489 && match_lhs=$(dircolors --print-database)
1490 # test if our $TERM is in the TERM values in dircolor
1491 [[ $'\n'${match_lhs} == *$'\n'"TERM "${safe_term}* ]] && use_color=true
1492
1493
1494 if ${use_color} && [[ $- == *i* ]]; then
1495
1496 if [[ $XTERM_VERSION == Cygwin* ]]; then
1497 get_term_color() {
1498 for x in "$@"; do
1499 case $x in
1500 underl) echo -n $'\E[4m' ;;
1501 bold) echo -n $'\E[1m' ;;
1502 red) echo -n $'\E[31m' ;;
1503 green) echo -n $'\E[32m' ;;
1504 blue) echo -n $'\E[34m' ;;
1505 cyan) echo -n $'\E[36m' ;;
1506 yellow) echo -n $'\E[33m' ;;
1507 purple) echo -n $'\E[35m' ;;
1508 nocolor) echo -n $'\E(B\E[m' ;;
1509 esac
1510 done
1511 }
1512
1513 else
1514 get_term_color() {
1515 for x in "$@"; do
1516 case $x in
1517 underl) echo -n $(tput smul) ;;
1518 bold) echo -n $(tput bold) ;;
1519 red) echo -n $(tput setaf 1) ;;
1520 green) echo -n $(tput setaf 2) ;;
1521 blue) echo -n $(tput setaf 4) ;;
1522 cyan) echo -n $(tput setaf 6) ;;
1523 yellow) echo -n $(tput setaf 3) ;;
1524 purple) echo -n $(tput setaf 5) ;;
1525 nocolor) echo -n $(tput sgr0) ;; # no font attributes
1526 esac
1527 done
1528 }
1529 fi
1530 else
1531 get_term_color() {
1532 :
1533 }
1534 fi
1535 # Try to keep environment pollution down, EPA loves us.
1536 unset safe_term match_lhs use_color
1537
1538
1539
1540
1541
1542
1543 ###############
1544 # prompt ######
1545 ###############
1546
1547
1548 if [[ $- == *i* ]]; then
1549 # git branch/status prompt function
1550 if [[ $OS != Windows_NT ]]; then
1551 GIT_PS1_SHOWDIRTYSTATE=true
1552 fi
1553 # arch source lopip show -fcation
1554 [[ -r /usr/share/git/git-prompt.sh ]] && source /usr/share/git/git-prompt.sh
1555 # fedora/debian source
1556 [[ -r /usr/share/git-core/contrib/completion/git-prompt.sh ]] && source /usr/share/git-core/contrib/completion/git-prompt.sh
1557
1558 # in case we didn't source git-prompt.sh
1559 if ! declare -f __git_ps1 > /dev/null; then
1560 __git_ps1() {
1561 :
1562 }
1563 fi
1564
1565 # this needs to come before next ps1 stuff
1566 # this stuff needs bash 4, feb 2009,
1567 # old enough to no longer condition on $BASH_VERSION anymore
1568 shopt -s autocd
1569 shopt -s dirspell
1570 PS1='\w'
1571 if [[ $- == *i* ]] && [[ ! $RLC_INSIDE_EMACS ]]; then
1572 PROMPT_DIRTRIM=2
1573 bind -m vi-command B:shell-backward-word
1574 bind -m vi-command W:shell-forward-word
1575 fi
1576
1577 if [[ $SSH_CLIENT ]]; then
1578 PS1="\h $PS1"
1579 fi
1580
1581 prompt_command() {
1582 local return=$? # this MUST COME FIRST
1583 local psc pst ps_char ps_color stale_subvol
1584 unset IFS
1585 history -a # save history
1586
1587 # for titlebar
1588 if [[ ! $DESKTOP_SESSION == xmonad && $TERM == *(screen*|xterm*|rxvt*) ]]; then
1589 # from the screen man page
1590 if [[ $TERM == screen* ]]; then
1591 local title_escape="\033]..2;"
1592 else
1593 local title_escape="\033]0;"
1594 fi
1595 echo -ne "$title_escape${PWD/#$HOME/~} $USER@$HOSTNAME\007"
1596 fi
1597
1598
1599 case $return in
1600 0) ps_color="$(get_term_color blue)"
1601 ps_char='\$'
1602 ;;
1603 1) ps_color="$(get_term_color green)"
1604 ps_char="$return \\$"
1605 ;;
1606 *) ps_color="$(get_term_color yellow)"
1607 ps_char="$return \\$"
1608 ;;
1609 esac
1610 if [[ ! -O . ]]; then # not owner
1611 if [[ -w . ]]; then # writable
1612 ps_color="$(get_term_color bold red)"
1613 else
1614 ps_color="$(get_term_color bold green)"
1615 fi
1616 fi
1617 # I would set nullglob, but bash has had bugs where that
1618 # doesn't work if not in top level.
1619 if [[ -e /nocow/btrfs-stale ]] && ((`ls -AUq /nocow/btrfs-stale|wc -l`)); then
1620 ps_char="! $ps_char"
1621 fi
1622 PS1="${PS1%"${PS1#*[wW]}"} \[$ps_color\]$ps_char\[$(get_term_color nocolor)\] "
1623 # emacs completion doesn't like the git prompt atm, so disabling it.
1624 #PS1="${PS1%"${PS1#*[wW]}"}$(__git_ps1 ' (%s)') \[$ps_color\]$ps_char\[$(get_term_color nocolor)\] "
1625 }
1626 PROMPT_COMMAND=prompt_command
1627 fi
1628
1629
1630
1631 ###########################################
1632 # stuff that makes sense to be at the end #
1633 ###########################################
1634 if [[ "$SUDOD" ]]; then
1635 cd "$SUDOD"
1636 unset SUDOD
1637 elif [[ -d /a ]] && [[ $PWD == $HOME ]] && [[ $- == *i* ]]; then
1638 cd /a
1639 fi
1640
1641
1642 # best practice
1643 unset IFS
1644
1645
1646 # if someone exported $SOE, catch errors
1647 if [[ $SOE ]]; then
1648 errcatch
1649 fi
1650
1651 # I'd prefer to have system-wide, plus user ruby, due to bug in it
1652 # https://github.com/rubygems/rubygems/pull/1002
1653 # further problems: installing multi-user ruby and user ruby,
1654 # you don't get multi-user ruby when you sudo to root, unless its sudo -i.
1655 # There a third hybrid form, which passenger error suggested I use,
1656 # but it didn't actually work.
1657
1658 # in cased I never need this
1659 # rvm for non-interactive shell: modified from https://rvm.io/rvm/basics
1660 #if [[ $(type -t rvm) == file && ! $(type -t ruby) ]]; then
1661 # source $(rvm 1.9.3 do rvm env --path)
1662 #fi
1663
1664 # based on warning from rvmsudo
1665 export rvmsudo_secure_path=1
1666
1667 # for other script I wrote
1668 #export ACME_TINY_PATH=/a/opt/acme-tiny
1669 export ACME_TINY_WRAPPER_CERT_DIR=/p/c/machine_specific/$HOSTNAME/webservercerts
1670
1671 if [[ -s "/usr/local/rvm/scripts/rvm" ]]; then
1672 source "/usr/local/rvm/scripts/rvm"
1673 elif [[ -s $HOME/.rvm/scripts/rvm ]]; then
1674 source $HOME/.rvm/scripts/rvm
1675 fi
1676
1677 export GOPATH=$HOME/go
1678 path_add $GOPATH/bin
1679
1680
1681 path_add --end ~/.npm-global
1682
1683
1684 # didn't get drush working, if I did, this seems like the
1685 # only good thing to include for it.
1686 # Include Drush completion.
1687 # if [ -f "/home/ian/.drush/drush.complete.sh" ] ; then
1688 # source /home/ian/.drush/drush.complete.sh
1689 # fi
1690
1691
1692 # https://wiki.archlinux.org/index.php/Xinitrc#Autostart_X_at_login
1693 # i added an extra condition as gentoo xorg guide says depending on
1694 # $DISPLAY is fragile.
1695 if [[ ! $DISPLAY && $XDG_VTNR == 1 ]] && shopt -q login_shell && isarch; then
1696 exec startx
1697 fi
1698
1699
1700 # ensure no bad programs appending to this file will have an affect
1701 return 0