fix btrbk service
[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 # * settings
11
12 CDPATH=.
13
14 set -o pipefail
15
16 # remove all aliases. aliases provided by the system tend to get in the way,
17 # for example, error happens if I try to define a function the same name as an alias
18 unalias -a
19
20 # remove gnome keyring warning messages
21 # there is probably a more proper way, but I didnt find any easily on google
22 # now using xfce+xmonad instead of vanilla xmonad, so disabling this
23 #unset GNOME_KEYRING_CONTROL
24
25 # use extra globing features.
26 shopt -s extglob
27 # include .files when globbing, but ignore files name . and ..
28 # setting this also sets dotglob.
29 # Note, this doesnt work in bash 4.4 anymore, for paths with
30 # more than 1 directory, like a/b/.foo, since * is fixed to not match /
31 export GLOBIGNORE=*/.:*/..
32
33 # broken with bash_completion package. Saw a bug for this once. dont anymore.
34 # still broken in wheezy
35 # still buggered in latest stable from the web, version 2.1
36 # perhaps its fixed in newer git version, which fails to make for me
37 # this note is from 6-2014.
38 # Also, enabling this before sourcing .bashrc makes PATH be empty.
39 #shopt -s nullglob
40
41 # make tab on an empty line do nothing
42 shopt -s no_empty_cmd_completion
43
44 # advanced completion
45 # http://bash-completion.alioth.debian.org/
46 # might be sourced by the system already, but ive noticed it not being sourced before
47 if ! type _init_completion &> /dev/null && [[ -r "/usr/share/bash-completion/bash_completion" ]]; then
48 . /usr/share/bash-completion/bash_completion
49 fi
50
51
52 # fix spelling errors for cd, only in interactive shell
53 shopt -s cdspell
54 # append history instead of overwritting it
55 shopt -s histappend
56 # for compatibility, per gentoo/debian bashrc
57 shopt -s checkwinsize
58 # attempt to save multiline single commands as single history entries.
59 shopt -s cmdhist
60 # enable **
61 shopt -s globstar
62
63
64 # inside emcas fixes
65 if [[ $RLC_INSIDE_EMACS ]]; then
66 # EMACS is used by bash on startup, but we dont need it anymore.
67 # plus I hit a bug in a makefile which inherited it
68 unset EMACS
69 export RLC_INSIDE_EMACS
70 export PAGER=cat
71 export MANPAGER=cat
72 # scp completion does not work, but this doesnt fix it. todo, figure this out
73 complete -r scp &> /dev/null
74 # todo, remote file completion fails, figure out how to turn it off
75 export NODE_DISABLE_COLORS=1
76 # This gets rid of ugly terminal escape chars in node repl
77 # sometime, Id like to have completion working in emacs shell for node
78 # the offending chars can be found in lib/readline.js,
79 # things that do like:
80 # stream.write('\x1b[' + (x + 1) + 'G');
81 # We can remove them and keep readline, for example by doing this
82 # to start a repl:
83 #!/usr/bin/env nodejs
84 # var readline = require('readline');
85 # readline.cursorTo = function(a,b,c) {};
86 # readline.clearScreenDown = function(a) {};
87 # const repl = require('repl');
88 # var replServer = repl.start('');
89 #
90 # no prompt, or else readline complete seems to be confused, based
91 # on our column being different? node probably needs to send
92 # different kind of escape sequence that is not ugly. Anyways,
93 # completion doesnt work yet even with the ugly prompt, so whatever
94 #
95 export NODE_NO_READLINE=1
96
97 fi
98
99
100 if [[ $- == *i* ]]; then
101 # for readline-complete.el
102 if [[ $RLC_INSIDE_EMACS ]]; then
103 # all for readline-complete.el
104 stty echo
105 bind 'set horizontal-scroll-mode on'
106 bind 'set print-completions-horizontally on'
107 bind '"\C-i": self-insert'
108 else
109
110 # todo: not sure this works in sakura
111 #stty werase undef
112 #bind "\C-w": kill-region
113 # sakura == xterm-256color
114 # konsole == xterm
115 if [[ $TERM == "xterm" ]]; then
116 # control + arrow keys. for other terminals, see http://unix.stackexchange.com/questions/10806/how-to-change-previous-next-word-shortcut-in-bash
117 bind '"\e[1;5C": shell-forward-word' 2>/dev/null
118 bind '"\e[1;5D": shell-backward-word' 2>/dev/null
119 else
120 # make ctrl-backspace work. for konsole, i fixed it through
121 # /home/iank/.local/share/konsole/default.keytab
122 stty werase '^h'
123 bind '"\eOc": shell-forward-word'
124 bind '"\eOd": shell-backward-word'
125 fi
126 # i cant remember why i did this, probably to free up some keys to bind
127 # to other things in bash.
128 # other than C-c and C-z, the rest defined by stty -a are, at least in
129 # gnome-terminal, overridden by bash, or disabled by the system
130 stty lnext undef stop undef start undef
131 fi
132
133 fi
134
135
136 # history number. History expansion is good.
137 PS4='$LINENO+ '
138 # history file size limit, set to unlimited.
139 # this needs to be different from the default because
140 # default HISTFILESIZE is 500 and could clobber our history
141 HISTFILESIZE=
142 # max commands 1 session can append/read from history
143 HISTSIZE=100000
144 # my own history size limit based on lines
145 HISTFILELINES=1000000
146 HISTFILE=$HOME/.bh
147 # the time format display when doing the history command
148 # also, setting this makes the history file record time
149 # of each command as seconds from the epoch
150 HISTTIMEFORMAT="%Y-%m-%d %I:%M %p "
151 # consecutive duplicate lines dont go in history
152 HISTCONTROL=ignoredups
153 # works in addition to HISTCONTROL to do more flexible things
154 # it could also do the same things as HISTCONTROL and thus replace it,
155 # but meh. dunno why, but just " *" does glob expansion, so use [ ] to avoid it.
156 HISTIGNORE='pass *:[ ]*:lom*:gram*'
157
158 export BC_LINE_LENGTH=0
159
160 export PROFILE_TASKS_TASK_OUTPUT_LIMIT=100
161
162 # note, if I use a machine I dont want files readable by all users, set
163 # umask 077 # If fewer than 4 digits are entered, leading zeros are assumed
164
165 C_DEFAULT_DIR=/a
166
167 # i for insensitive. the rest from
168 # https://superuser.com/questions/366930/how-do-i-get-the-git-pager-to-clean-up-screen-output-after-exit
169 # and reading the man
170 export LESS=RXi
171 export SYSTEMD_LESS=$LESS
172
173 # * include files
174 for _x in /a/bin/distro-functions/src/* /a/bin/!(githtml)/*-function?(s); do
175 source "$_x"
176 done
177 unset _x
178 # so I can share my bashrc
179 for x in /a/bin/bash_unpublished/source-!(.#*); do source $x; done
180 source $(dirname $(readlink -f $BASH_SOURCE))/path_add-function
181 source /a/bin/log-quiet/logq-function
182 if [[ -e /a/bin/errhandle/err ]]; then
183 source /a/bin/errhandle/err
184 err-allow
185 fi
186 # if someone exported $SOE (stop on error), catch errors
187 if [[ $SOE ]]; then
188 err-catch
189 fi
190
191 path_add /a/exe
192 # add this with absolute paths as needed for better security
193 #path_add --end /path/to/node_modules/.bin
194
195 # pip3 --user things go here:
196 path_add --end ~/.local/bin
197 path_add --ifexists --end /a/work/libremanage
198 path_add --ifexists --end /a/opt/adt-bundle*/tools /a/opt/adt-bundle*/platform-tools
199 path_add --ifexists --end /a/opt/scancode-toolkit-2.9.2
200 export WCDHOME=/a
201 # based on readme.debian. dunno if this will break on other distros.
202 _x=/usr/share/wcd/wcd-include.sh
203 if [[ -e $_x ]]; then source $_x; fi
204
205
206 # * aliases
207
208 # very few aliases, functions are always preferred.
209
210 # ancient stuff.
211 if [[ $OS == Windows_NT ]]; then
212 alias ffs='cygstart "/c/Program Files (x86)/Mozilla Firefox/firefox.exe" -P scratch'
213 export DISPLAY=nt
214 alias j='command cygpath'
215 alias t='command cygstart'
216 alias cygstart='echo be quick, use the alias "t" instead :\)'
217 alias cygpath='echo be quick, use the alias "j" instead :\)'
218 fi
219
220
221
222 # keep this in mind? good for safety.
223 # alias cp='cp -i'
224 # alias mv='mv -i'
225
226
227 # remove any default aliases for these
228 unalias ls ll grep &>/dev/null ||:
229
230
231
232 # * functions
233
234
235 ..() { c ..; }
236 ...() { c ../..; }
237 ....() { c ../../..; }
238 .....() { c ../../../..; }
239 ......() { c ../../../../..; }
240
241
242 # file cut copy and paste, like the text buffers :)
243 # I havnt tested these.
244 _fbufferinit() { # internal use by
245 ! [[ $my_f_tempdir ]] && my_f_tempdir=$(mktemp -d)
246 rm -rf "$my_f_tempdir"/*
247 }
248 fcp() { # file cp
249 _fbufferinit
250 cp "$@" "$my_f_tempdir"/
251 }
252 fct() { # file cut
253 _fbufferinit
254 mv "$@" "$my_f_tempdir"/
255 }
256 fpst() { # file paste
257 [[ $2 ]] && { echo too many arguments; return 1; }
258 target=${1:-.}
259 cp "$my_f_tempdir"/* "$target"
260 }
261
262
263 # todo, update this
264 complete -F _longopt la lower low rlt rld rl lld ts ll dircp ex fcp fct fpst gr
265
266
267 _cdiff-prep() {
268 # join options which are continued to multiples lines onto one line
269 local first=true
270 grep -vE '^([ \t]*#|^[ \t]*$)' "$1" | while IFS= read -r line; do
271 # remove leading spaces/tabs. assumes extglob
272 if [[ $line == "[ ]*" ]]; then
273 line="${line##+( )}"
274 fi
275 if $first; then
276 pastline="$line"
277 first=false
278 elif [[ $line == *=* ]]; then
279 echo "$pastline" >> "$2"
280 pastline="$line"
281 else
282 pastline="$pastline $line"
283 fi
284 done
285 echo "$pastline" >> "$2"
286 }
287
288 _khfix_common() {
289 local host=${1##*@}
290 local ip port
291 read -r ip port < <(timeout 1 ssh -oBatchMode=yes -oControlMaster=no -oControlPath=/ -v $1 |& sed -rn "s/debug1: Connecting to $host \[([^\]*)] port ([0-9]+).*/\1 \2/p")
292 if [[ ! $ip ]]; then
293 echo "khfix: ssh failed"
294 return 1
295 fi
296 if [[ $port != 22 ]]; then
297 ip_entry="[$ip]:$port"
298 host_entry="[$host]:$port"
299 else
300 ip_entry=$ip
301 host_entry=$host
302 fi
303 ssh-keygen -R "$host_entry" -f $(readlink -f ~/.ssh/known_hosts)
304 echo "khfix: removing key for $ip_entry"
305 ssh-keygen -R "$ip_entry" -f $(readlink -f ~/.ssh/known_hosts)
306 }
307 khfix() { # known hosts fix
308 _khfix_common "$@" || return 1
309 ssh $1 :
310 }
311 khcopy() {
312 _khfix_common "$@"
313 ssh-copy-id $1
314 }
315
316 a() {
317 local x=$(readlink -nf "${1:-$PWD}")
318 # yes, its kinda dumb that xclip/xsel cant do this in one invocation
319 echo -n "$x" | xclip -selection clipboard
320 echo -n "$x" | xclip
321 }
322
323 ack() { ack-grep "$@"; }
324
325 anki() {
326 if which anki &>/dev/null; then
327 command anki
328 else
329 schroot -c anki -- anki
330 fi
331 }
332
333 ap() {
334 # pushd in case current directory has an ansible.cfg file
335 pushd /a/xans >/dev/null
336 ansible-playbook -v -l ${1:- $(hostname -f)} site.yml
337 popd >/dev/null
338 }
339 aw() {
340 pushd /a/work/ansible-configs >/dev/null
341 time ansible-playbook -v -i inventory adhoc.yml "$@"
342 popd >/dev/null
343 }
344 ad() {
345 pushd /a/bin/distro-setup/a >/dev/null
346 ansible-playbook site.yml
347 popd >/dev/null
348 }
349
350 astudio() {
351 # googling android emulator libGL error: failed to load driver: r600
352 # lead to http://stackoverflow.com/a/36625175/14456
353 export ANDROID_EMULATOR_USE_SYSTEM_LIBS=1
354 /a/opt/android-studio/bin/studio.sh "$@" &r;
355 }
356
357 b() {
358 # backwards
359 c -
360 }
361
362 bbk() {
363 c /
364 local active=true
365 if systemctl is-active btrbk.service; then
366 echo "cron btrbk is already running"
367 return 1
368 fi
369 systemctl is-active btrbk.timer || active=false
370 if $active; then
371 ser disable btrbk.timer
372 fi
373 # run latest
374 install-my-scripts
375 if ! btrbk-run "$@" && $active; then
376 ser enable btrbk.timer
377 fi
378 }
379
380 bfg() { java -jar /a/opt/bfg-1.12.14.jar "$@"; }
381
382 bigclock() {
383 xclock -digital -update 1 -face 'arial black-80:bold'
384 }
385
386 bpull() {
387 [[ $1 ]] || return 1
388 c /
389 # run latest
390 install-my-scripts
391 switch-mail-host $1 $HOSTNAME
392 }
393 bpush() {
394 [[ $1 ]] || return 1
395 c /
396 # run latest
397 install-my-scripts
398 switch-mail-host $HOSTNAME $1
399 }
400
401
402 btc() {
403 local f=/etc/bitcoin/bitcoin.conf
404 # importprivkey will timeout if using the default of 15 mins.
405 # upped it to 1 hour.
406 bitcoin-cli -rpcclienttimeout=60000 -$(s grep rpcuser= $f) -$(s grep rpcpassword= $f) "$@"
407 }
408
409 btcusd() { # $1 btc in usd
410 local price
411 price="$(curl -s https://api.coinbase.com/v2/prices/BTC-USD/spot | jq -r .data.amount)"
412 printf "$%s\n" "$price"
413 if [[ $1 ]]; then
414 printf "$%.2f\n" "$(echo "scale=4; $price * $1"| bc -l)"
415 fi
416 }
417 usdbtc() { # $1 usd in btc
418 local price
419 price="$(curl -s https://api.coinbase.com/v2/prices/BTC-USD/spot | jq -r .data.amount)"
420 printf "$%s\n" "$price"
421 if [[ $1 ]]; then
422 # 100 mil satoshi / btc. 8 digits after the 1.
423 printf "%.8f btc\n" "$(echo "scale=10; $1 / $price "| bc -l)"
424 fi
425 }
426 satoshi() { # $1 satoshi in usd
427 local price
428 price="$(curl -s https://api.coinbase.com/v2/prices/BTC-USD/spot | jq -r .data.amount)"
429 price=$(echo "scale=10; $price * 0.00000001"| bc -l)
430 printf "$%f\n" "$price"
431 if [[ $1 ]]; then
432 printf "$%.2f\n" "$(echo "scale=10; $price * $1"| bc -l)"
433 fi
434 }
435
436
437 # c. better cd
438 if [[ $RLC_INSIDE_EMACS ]]; then
439 c() { wcd -c -z 50 -o "$@"; }
440 else
441 # lets see what the fancy terminal does from time to time
442 c() { wcd -c -z 50 "$@"; }
443 fi
444
445 caa() { git commit --amend --no-edit -a; }
446
447 caf() {
448 find -L $1 -type f -not \( -name .svn -prune -o -name .git -prune \
449 -o -name .hg -prune -o -name .editor-backups -prune \
450 -o -name .undo-tree-history -prune \) \
451 -exec bash -lc 'hr; echo "$1"; hr; cat "$1"' _ {} \; 2>/dev/null
452
453 }
454
455 calc() { echo "scale=3; $*" | bc -l; }
456 # no having to type quotes, but also no command history:
457 clc() {
458 local x
459 read -r x
460 echo "scale=3; $x" | bc -l
461 }
462
463 cam() {
464 git commit -am "$*"
465 }
466
467 cbfstool () { /a/opt/coreboot/build/cbfstool "$@"; }
468
469 ccat () { # config cat. see a config without extra lines.
470 grep '^\s*[^;[:space:]#]' "$@"
471 }
472
473 cdiff() {
474 # diff config files,
475 # setup for format of postfix, eg:
476 # option = stuff[,]
477 # [more stuff]
478 local pastline
479 local unified="$(mktemp)"
480 local f1="$(mktemp)"
481 local f2="$(mktemp)"
482 _cdiff-prep "$1" "$f1"
483 _cdiff-prep "$2" "$f2"
484 cat "$f1" "$f2" | grep -Po '^[^=]+=' | sort | uniq > "$unified"
485 while IFS= read -r line; do
486 # the default bright red / blue doesnt work in emacs shell
487 dwdiff -cblue,red -A best -d " ," <(grep "^$line" "$f1" || echo ) <(grep "^$line" "$f2" || echo ) | colordiff
488 done < "$unified"
489 }
490
491 cgpl()
492 {
493 if (($#)); then
494 cp /a/bin/data/COPYING "$@"
495 else
496 cp /a/bin/data/COPYING .
497 fi
498 }
499
500 capache()
501 {
502 if (($#)); then
503 cp /a/bin/data/LICENSE "$@"
504 else
505 cp /a/bin/data/LICENSE .
506 fi
507 }
508
509 cat-new-files() {
510 local start=$SECONDS
511 local dir="$1"
512 inotifywait -m "$dir" -e create -e moved_to |
513 while read filedir _ file; do
514 cat "$filedir$file"
515 hr
516 calc $((SECONDS - start)) / 60
517 sleep 5
518 done
519
520 }
521
522 chown() {
523 # makes it so chown -R symlink affects the symlink and its target.
524 if [[ $1 == -R ]]; then
525 shift
526 command chown -h "$@"
527 command chown -R "$@"
528 else
529 command chown "$@"
530 fi
531 }
532
533 cim() {
534 git commit -m "$*"
535 }
536
537 cl() {
538 # choose recent directory. cl = cd list
539 c =
540 }
541
542 chrome() {
543 if type -p chromium &>/dev/null; then
544 cmd=chromium
545 else
546 cd
547 cmd="schroot -c stretch chromium"
548 CHROMIUM_FLAGS='--enable-remote-extensions' $cmd &r
549 fi
550 }
551
552 d() { builtin bg; }
553 complete -A stopped -P '"%' -S '"' d
554
555 dat() { # do all tee, for more complex scripts
556 tee >(ssh frodo bash -l) >(bash -l) >(ssh x2 bash -l) >(ssh tp bash -l)
557 }
558 da() { # do all
559 local host
560 "$@"
561 for host in x2 tp kd; do
562 ssh $host "$@"
563 done
564 }
565
566 dc() {
567 diff --strip-trailing-cr -w "$@" # diff content
568 }
569
570 debian_pick_mirror () {
571 # netselect-apt finds a fast mirror.
572 # but we need to replace the mirrors ourselves,
573 # because it doesnt do that. best it can do is
574 # output a basic sources file
575 # here we get the server it found, get the main server we use
576 # then substitute all instances of one for the other in the sources file
577 # and backup original to /etc/apt/sources.list-original.
578 # this is idempotent. the only way to identify debian sources is to
579 # note the original server, so we put it in a comment so we can
580 # identify it later.
581 local file=$(mktemp -d)/f # safe way to get file name without creating one
582 sudo netselect-apt -o "$file" || return 1
583 url=$(grep ^\\w $file | head -n1 | awk '{print $2}')
584 sudo cp -f /etc/apt/sources.list /etc/apt/sources.list-original
585 sudo sed -ri "/http.us.debian.org/ s@( *[^ #]+ +)[^ ]+([^#]+).*@\1$url\2# http.us.debian.org@" /etc/apt/sources.list
586 sudo apt-get update
587 }
588
589 despace() {
590 local x y
591 for x in "$@"; do
592 y="${x// /_}"
593 safe_rename "$x" "$y"
594 done
595 }
596
597 dt() {
598 date "+%A, %B %d, %r" "$@"
599 }
600
601 dus() { # du, sorted, default arg of
602 du -sh ${@:-*} | sort -h
603 }
604
605
606
607 e() { echo "$@"; }
608
609
610 ediff() {
611 [[ ${#@} == 2 ]] || { echo "error: ediff requires 2 arguments"; return 1; }
612 emacs --eval "(ediff-files \"$1\" \"$2\")"
613 }
614
615
616 envload() { # load environment from a previous: export > file
617 local file=${1:-$HOME/.${USER}_env}
618 eval "$(export | sed 's/^declare -x/export -n/')"
619 while IFS= read -r line; do
620 # declare -x makes variables local to a function
621 eval ${line/#declare -x/export}
622 done < "$file"
623 }
624
625 # mail related
626 etail() {
627 sudo tail -F /var/log/exim4/mainlog -n 50
628 }
629
630 f() {
631 # cd forward
632 c +
633 }
634
635 fa() {
636 # find array. make an array of file names found by find into $x
637 # argument: find arguments
638 # return: find results in an array $x
639 while read -rd ''; do
640 x+=("$REPLY");
641 done < <(find "$@" -print0);
642 }
643
644 faf() { # find all files
645 find -L $1 -type f -not \( -name .svn -prune -o -name .git -prune \
646 -o -name .hg -prune -o -name .editor-backups -prune \
647 -o -name .undo-tree-history -prune \) 2>/dev/null
648 }
649
650 # one that comes with distros is too old for newer devices
651 fastboot() {
652 /a/opt/android-platform-tools/fastboot "$@";
653 }
654
655 kdecd() { /usr/lib/x86_64-linux-gnu/libexec/kdeconnectd; }
656
657 # List of apps to install/update
658 # Create from existing manually installed apps by doing
659 # fdroidcl update
660 # fdroidcl search -i, then manually removing
661 # automatically installed/preinstalled apps
662
663 #
664 # # my attempt at recovering from boot loop:
665 # # in that case, boot to recovery (volume up, home button, power, let go of power after samsun logo)
666 # # then
667 # mount /dev/block/mmcblk0p12 /data
668 # cd /data
669 # find -iname '*appname*'
670 # rm -rf FOUND_DIRS
671 # usually good enough to just rm -rf /data/app/APPNAME
672 #
673 # currently broken:
674 # # causes replicant to crash
675 # org.quantumbadger.redreader
676 # org.kde.kdeconnect_tp
677
678 # not broke, but wont work without gps
679 #com.zoffcc.applications.zanavi
680 # not broke, but not using atm
681 #com.nutomic.syncthingandroid
682 # # doesn\'t work on replicant
683 #net.sourceforge.opencamera
684 #
685 fdroid_pkgs=(
686 de.marmaro.krt.ffupdater
687 me.ccrama.redditslide
688 org.fedorahosted.freeotp
689 at.bitfire.davdroid
690 com.alaskalinuxuser.justnotes
691 com.artifex.mupdf.viewer.app
692 com.danielkim.soundrecorder
693 com.fsck.k9
694 com.ghostsq.commander
695 com.ichi2.anki
696 com.jmstudios.redmoon
697 com.jmstudios.chibe
698 org.kde.kdeconnect_tp
699 com.notecryptpro
700 com.termux
701 cz.martykan.forecastie
702 de.danoeh.antennapod
703 de.blinkt.openvpn
704 de.marmaro.krt.ffupdater
705 eu.siacs.conversations
706 free.rm.skytube.oss
707 im.vector.alpha # riot
708 info.papdt.blackblub
709 me.tripsit.tripmobile
710 net.gaast.giggity
711 net.minetest.minetest
712 net.osmand.plus
713 org.isoron.uhabits
714 org.linphone
715 org.gnu.icecat
716 org.smssecure.smssecure
717 org.yaaic
718 sh.ftp.rocketninelabs.meditationassistant.opensource
719 )
720 # https://forum.xda-developers.com/android/software-hacking/wip-selinux-capable-superuser-t3216394
721 # for maru,
722 #me.phh.superuser
723
724 fdup() {
725 local -A installed updated
726 local p
727 fdroidcl update
728 if fdroidcl search -u | grep ^org.fdroid.fdroid; then
729 fdroidcl upgrade org.fdroid.fdroid
730 sleep 5
731 fdroidcl update
732 fi
733 for p in $(fdroidcl search -i| grep -o "^\S\+"); do
734 installed[$p]=true
735 done
736 for p in $(fdroidcl search -u| grep -o "^\S\+"); do
737 updated[$p]=false
738 done
739 for p in ${fdroid_pkgs[@]}; do
740 if ! ${installed[$p]:-false}; then
741 fdroidcl install $p
742 # sleeps are just me being paranoid since replicant has a history of crashing when certain apps are installed
743 sleep 5
744 fi
745 done
746 for p in ${!installed[@]}; do
747 if ! ${updated[$p]:-true}; then
748 fdroidcl upgrade $p
749 sleep 5
750 fi
751 done
752 }
753
754 firefox-default-profile() {
755 key=Default value=1 section=$1
756 file=/p/c/subdir_files/.mozilla/firefox/profiles.ini
757 sed -ri "/^ *$key/d" "$file"
758 sed -ri "/ *\[$section\]/,/^ *\[[^]]+\]/{/^\s*$key[[:space:]=]/d};/ *\[$section\]/a $key=$value" "$file"
759 }
760 fdhome() { #firefox default home profile
761 firefox-default-profile Profile0
762 }
763
764 fdwork() {
765 firefox-default-profile Profile4
766 }
767
768 ff() {
769 if type -P firefox &>/dev/null; then
770 firefox "$@"
771 else
772 iceweasel "$@"
773 fi
774 }
775
776
777
778 fn() {
779 firefox -P alt "$@" >/dev/null 2>&1
780 }
781
782
783 fsdiff () {
784 local missing=false
785 local dname="${PWD##*/}"
786 local m="/a/tmp/$dname-missing"
787 local d="/a/tmp/$dname-diff"
788 [[ -e $d ]] && rm "$d"
789 [[ -e $m ]] && rm "$m"
790 local msize=0
791 local fsfile
792 while read -r line; do
793 fsfile="$1${line#.}"
794 if [[ -e "$fsfile" ]]; then
795 md5diff "$line" "$fsfile" && tee -a "/a/tmp/$dname-diff" <<< "$fsfile $line"
796 else
797 missing=true
798 echo "$line" >> "$m"
799 msize=$((msize + 1))
800 fi
801 done < <(find -type f )
802 if $missing; then
803 echo "$m"
804 (( msize <= 100 )) && cat $m
805 fi
806 }
807 fsdiff-test() {
808 # expected output, with different tmp dirs
809 # /tmp/tmp.HDPbwMqdC9/c/d ./c/d
810 # /a/tmp/tmp.qLDkYxBYPM-missing
811 # ./b
812 cd $(mktemp -d)
813 echo ok > a
814 echo nok > b
815 mkdir c
816 echo ok > c/d
817 local x=$(mktemp -d)
818 mkdir $x/c
819 echo different > $x/c/d
820 echo ok > $x/a
821 fsdiff $x
822 }
823 rename-test() {
824 # test whether missing files were renamed, generally for use with fsdiff
825 # $1 = fsdiff output file, $2 = directory to compare to. pwd = fsdiff dir
826 # echos non-renamed files
827 local x y found
828 unset sums
829 for x in "$2"/*; do
830 { sums+=( "$(md5sum < "$x")" ) ; } 2>/dev/null
831 done
832 while read -r line; do
833 { missing_sum=$(md5sum < "$line") ; } 2>/dev/null
834 renamed=false
835 for x in "${sums[@]}"; do
836 if [[ $missing_sum == "$x" ]]; then
837 renamed=true
838 break
839 fi
840 done
841 $renamed || echo "$line"
842 done < "$1"
843 return 0
844 }
845
846 feh() {
847 # F = fullscren, z = random, Z = auto zoom
848 command feh -FzZ "$@"
849 }
850
851 # mail related
852 frozen() {
853 rm -rf /tmp/frozen
854 s mailq |gr frozen|awk '{print $3}' | while read -r id; do
855 s exim -Mvl $id
856 echo
857 s exim -Mvh $id
858 echo
859 s exim -Mvb $id
860 echo -e '\n\n##############################\n'
861 done | tee -a /tmp/frozen
862 }
863 frozenrm() {
864 local ids=()
865 while read -r line; do
866 printf '%s\n' "$line"
867 ids+=($(printf '%s\n' "$line" |gr frozen|awk '{print $3}'))
868 done < <(s mailq)
869 echo "sleeping for 2 in case you change your mind"
870 sleep 2
871 s exim -Mrm "${ids[@]}"
872 }
873
874 funce() {
875 # like -e for functions. returns on error.
876 # at the end of the function, disable with:
877 # trap ERR
878 trap 'echo "${BASH_COMMAND:+BASH_COMMAND=\"$BASH_COMMAND\" }
879 ${FUNCNAME:+FUNCNAME=\"$FUNCNAME\" }${LINENO:+LINENO=\"$LINENO\" }\$?=$?"
880 trap ERR
881 return' ERR
882 }
883
884
885 fw() {
886 firefox -P default "$@" >/dev/null 2>&1
887 }
888
889 getdir () {
890 local help="Usage: getdir [--help] PATH
891 Output the directory of PATH, or just PATH if it is a directory."
892 if [[ $1 == --help ]]; then
893 echo "$help"
894 return 0
895 fi
896 if [[ $# -ne 1 ]]; then
897 echo "getdir error: expected 1 argument, got $#"
898 return 1
899 fi
900 if [[ -d $1 ]]; then
901 echo "$1"
902 else
903 local dir="$(dirname "$1")"
904 if [[ -d $dir ]]; then
905 echo "$dir"
906 else
907 echo "getdir error: directory does not exist"
908 return 1
909 fi
910 fi
911 }
912
913 git_empty_branch() { # start an empty git branch. carefull, it deletes untracked files.
914 [[ $# == 1 ]] || { echo 'need a branch name!'; return 1;}
915 local gitroot
916 gitroot || return 1 # function to set gitroot
917 builtin cd "$gitroot"
918 git symbolic-ref HEAD refs/heads/$1
919 rm .git/index
920 git clean -fdx
921 }
922
923 gitroot() {
924 local help="Usage: gitroot [--help]
925 Print the full path to the root of the current git repo
926
927 Handles being within a .git directory, unlike git rev-parse --show-toplevel,
928 and works in older versions of git which did not have that."
929 if [[ $1 == --help ]]; then
930 echo "$help"
931 return
932 fi
933 local p=$(git rev-parse --git-dir) || { echo "error: not in a git repo" ; return 1; }
934 [[ $p != /* ]] && p=$PWD
935 echo "${p%%/.git}"
936 }
937
938 gitian() {
939 git config user.email ian@iankelling.org
940 }
941
942 gh() {
943 # i got an error, gh not found when doing a pull request, it seems like it wants itself in it\'s path.
944 local _oldpath="$PATH"
945 PATH="$PATH:~/node_modules/.bin"
946 command gh "$@"
947 PATH="$_oldpath"
948 }
949
950 gmacs() {
951 # quit will prompt if the program crashes.
952 gdb -ex=r -ex=quit --args emacs "$@"; r;
953 }
954
955 gdkill() {
956 # kill the emacs daemon
957 pk1 emacs --daemon
958 }
959
960 # at least in flidas, things rely on gpg being gpg1
961 gpg() {
962 command gpg2 "$@"
963 }
964
965 gse() {
966 local email=ian@iankelling.org
967 if readlink ~/.mu | grep fsf &>/dev/null; then
968 email=iank@fsf.org
969 fi
970 git send-email --notes "--envelope-sender=<$email>" \
971 --suppress-cc=self "$@"
972 }
973
974 gr() {
975 grep -iIP --color=auto "$@"
976 }
977
978 grr() { # grep recursive
979 if [[ ${#@} == 1 ]]; then
980 grep --exclude-dir='*.emacs.d' --exclude-dir='*.git' -RiIP --color=auto "$@" .
981 else
982 grep --exclude-dir='*.emacs.d' --exclude-dir='*.git' -RiIP --color=auto "$@"
983 fi
984 }
985
986 hstatus() {
987 # do git status on published repos
988 cd /a/bin/githtml
989 do_hr=false
990 for x in *; do
991 cd `readlink -f $x`/..
992 status=$(i status -s) || pwd
993 if [[ $status ]]; then
994 hr
995 echo $x
996 printf "%s\n" "$status"
997 fi
998 cd /a/bin/githtml
999 done
1000 }
1001
1002 hl() { # history limit. Write extra history to archive file.
1003 # todo: this is not working or not used currently
1004 local max_lines linecount tempfile prune_lines x
1005 local harchive="${HISTFILE}_archive"
1006 for x in "$HISTFILE" "$harchive"; do
1007 [[ -e $x ]] || { touch "$x" && echo "notice from hl(): creating $x"; }
1008 if [[ ! $x || ! -e $x || ! -w $x || $(stat -c "%u" "$x") != $EUID ]]; then
1009 echo "error in hl: history file \$x:$x no good"
1010 return 1
1011 fi
1012 done
1013 history -a # save history
1014 max_lines=$HISTFILELINES
1015 [[ $max_lines =~ ^[0-9]+$ ]] || { echo "error in hl: failed to get max line count"; return 1; }
1016 linecount=$(wc -l < $HISTFILE) # pipe so it doesnt output a filename
1017 [[ $linecount =~ ^[0-9]+$ ]] || { echo "error in hl: wc failed"; return 1; }
1018 if (($linecount > $max_lines)); then
1019 prune_lines=$(($linecount - $max_lines))
1020 head -n $prune_lines "$HISTFILE" >> "$harchive" \
1021 && sed --follow-symlinks -ie "1,${prune_lines}d" $HISTFILE
1022 fi
1023 }
1024
1025 hr() { # horizontal row. used to break up output
1026 printf "$(tput setaf 5)â–ˆ$(tput sgr0)%.0s" $(seq ${COLUMNS:-60})
1027 echo
1028 }
1029
1030 hrcat() { local f; for f; do [[ -f $f ]] || continue; hr; echo "$f"; cat "$f"; done }
1031
1032 # get latest hub and run it
1033 # main command to use:
1034 # hub pull-request --no-edit
1035 # --no-edit means to use the first commit\'s message as the pull request message.
1036 # Also, you need to use a feature branch, not master in your fork.
1037 # On first use, you input username/pass and it gets an oath token so you dont have to repeat
1038 # it\'s at ~/.config/hub
1039 hub() {
1040 local up uptar updir p
1041 p=/github/hub/releases/
1042 up=https://github.com/$(curl -s https://github.com$p| grep -o $p'download/[^/]*/hub-linux-amd64[^"]*' | head -n1)
1043 uptar=${up##*/}
1044 updir=${uptar%.tgz}
1045 if [[ ! -e /a/opt/$updir ]]; then
1046 rm -rf /a/opt/hub-linux-amd64*
1047 wget -P /a/opt $up
1048 tar -C /a/opt -zxf /a/opt/$uptar
1049 rm -f /a/opt/$uptar
1050 s /a/opt/$updir/install
1051 fi
1052
1053 # save token across computers
1054 if [[ ! -L ~/.config/hub ]]; then
1055 if [[ -e ~/.config/hub ]]; then
1056 mv ~/.config/hub /p/c/subdir_files/.config/
1057 fi
1058 if [[ -e /p/c/subdir_files/.config/hub ]]; then
1059 conflink
1060 fi
1061 fi
1062 command hub "$@"
1063 }
1064
1065 i() { git "$@"; }
1066 # modified from ~/local/bin/git-completion.bash
1067 # other completion commands are mostly taken from bash_completion package
1068 complete -o bashdefault -o default -o nospace -F _git i 2>/dev/null \
1069 || complete -o default -o nospace -F _git i
1070
1071 if ! type service &>/dev/null; then
1072 service() {
1073 echo actually running: systemctl $2 $1
1074 systemctl $2 $1
1075 }
1076 fi
1077
1078 ic() {
1079 # fast commit all
1080 git commit -am "$*"
1081 }
1082
1083
1084 idea() {
1085 /a/opt/idea-IC-163.7743.44/bin/idea.sh "$@" &r
1086 }
1087
1088 ifn() {
1089 # insensitive find
1090 find -L . -not \( -name .svn -prune -o -name .git -prune \
1091 -o -name .hg -prune -o -name .editor-backups -prune \
1092 -o -name .undo-tree-history -prune \) -iname "*$**" 2>/dev/null
1093 }
1094
1095
1096 if [[ $OS == Windows_NT ]]; then
1097 # cygstart wrapper
1098 cs() {
1099 cygstart "$@" &
1100 }
1101 xp() {
1102 explorer.exe .
1103 }
1104 # launch
1105 o() {
1106 local x=(*$1*)
1107 (( ${#x[#]} > 1 )) && { echo "warning ${#x[#]} matches found"; sleep 1; }
1108 cygstart *$1* &
1109 }
1110 else
1111 o() {
1112 if type gvfs-open &> /dev/null ; then
1113 gvfs-open "$@"
1114 else
1115 xdg-open "$@"
1116 fi
1117 # another alternative is run-mailcap
1118 }
1119 fi
1120
1121 ipdrop() {
1122 s iptables -A INPUT -s $1 -j DROP
1123 }
1124
1125
1126 istext() {
1127 grep -Il "" "$@" &>/dev/null
1128 }
1129
1130 jfilter() {
1131 grep -Evi -e "^(\S+\s+){4}(sudo|sshd|cron)\[\S*:" \
1132 -e "^(\S+\s+){4}systemd\[\S*: (starting|started) (btrfsmaintstop|dynamicipupdate|spamd dns bug fix cronjob|rss2email)\.*$"
1133 }
1134 jtail() {
1135 journalctl -n 10000 -f "$@" | jfilter
1136 }
1137 jr() { journalctl "$@" | jfilter | less ; }
1138 jrf() { journalctl -f "$@" | jfilter; }
1139
1140 kff() { # keyboardio firmware flash
1141 pushd /a/bin/distro-setup/Arduino/Model01-Firmware
1142 yes $'\n' | make flash
1143 popd
1144 }
1145
1146 l() {
1147 if [[ $PWD == /[iap] ]]; then
1148 command ls -A --color=auto -I lost+found "$@"
1149 else
1150 command ls -A --color=auto "$@"
1151 fi
1152 }
1153
1154
1155 lcn() { locate -i "*$**"; }
1156
1157 lg() { LC_COLLATE=C.UTF-8 ll --group-directories-first; }
1158
1159 lt() { ll -tr "$@"; }
1160
1161 lld() { ll -d "$@"; }
1162
1163 lom() {
1164 local l base
1165 if [[ $1 == /* ]]; then
1166 base=${1##*/}
1167 if mountpoint /mnt/$base; then
1168 return 0
1169 fi
1170 l=$(sudo losetup -f)
1171 sudo losetup $l $1
1172 if ! sudo cryptsetup luksOpen $l $base; then
1173 sudo losetup -d $l
1174 return 1
1175 fi
1176 sudo mkdir -p /mnt/$base
1177 sudo mount /dev/mapper/$base /mnt/$base
1178 sudo chown $USER:$USER /mnt/$base
1179 else
1180 base=$1
1181 sudo umount /mnt/$base
1182 l=$(sudo cryptsetup status /dev/mapper/$base|sed -rn 's/^\s*device:\s*(.*)/\1/p')
1183 sudo cryptsetup luksClose /dev/mapper/$base || return 1
1184 sudo losetup -d $l
1185 fi
1186 }
1187
1188 low() { # make filenames lowercase, remove bad chars
1189 local f new
1190 for f in "$@"; do
1191 new="${f,,}" # downcase
1192 new="${new//[^[:alnum:]._-]/_}" # sub bad chars
1193 new="${new#"${new%%[[:alnum:]]*}"}" # remove leading/trailing non-alnum
1194 new="${new%"${new##*[[:alnum:]]}"}"
1195 # remove bad underscores, like __ and _._
1196 new=$(echo $new | sed -r 's/__+/_/g;s/_+([.-])|([.-])_+/\1/g')
1197 safe_rename "$f" "$new" || return 1
1198 done
1199 return 0
1200 }
1201
1202 lower() { # make first letter of filenames lowercase.
1203 local x
1204 for x in "$@"; do
1205 if [[ ${x::1} == [A-Z] ]]; then
1206 y=$(tr "[A-Z]" "[a-z]" <<<"${x::1}")"${x:1}"
1207 safe_rename "$x" "$y" || return 1
1208 fi
1209 done
1210 }
1211
1212
1213 k() { # history search
1214 grep -P --binary-files=text "$@" ${HISTFILE:-~/.bash_history} | tail -n 80;
1215 }
1216
1217 ks() { # history search
1218 grep -P --binary-files=text "$@" ${HISTFILE:-~/.bash_history} | uniq;
1219 }
1220
1221
1222 make-targets() {
1223 # show make targets, via http://stackoverflow.com/questions/3063507/list-goals-targets-in-gnu-make
1224 make -qp | awk -F':' '/^[a-zA-Z0-9][^$#\/\t=]*:([^=]|$)/ {split($1,A,/ /);for(i in A)print A[i]}'
1225 }
1226
1227 mbenable() {
1228 mb=$1
1229 dst=/m/4e/$1
1230 src=/m/md/$1
1231 set -x
1232 [[ -e $src ]] || { set +x; return 1; }
1233 mv -T $src $dst || { set +x; return 1; }
1234 ln -s -T $dst $src
1235 /a/exe/lnf /p/.mu ~
1236 mu index --maildir=/m/4e
1237 set +x
1238 }
1239 mbdisable() {
1240 mb=$1
1241 dst=/m/md/$1
1242 src=/m/4e/$1
1243 set -x
1244 [[ -e $src ]] || { set +x; return 1; }
1245 if [[ -L $dst ]]; then rm $dst; fi
1246 mv -T $src $dst
1247 set +x
1248 }
1249
1250
1251 mdt() {
1252 markdown "$1" >/tmp/mdtest.html
1253 firefox /tmp/mdtest.html
1254 }
1255
1256
1257 mkc() {
1258 mkdir "$1"
1259 c "$1"
1260 }
1261
1262 mkct() {
1263 mkc `mktemp -d`
1264 }
1265
1266 mkt() { # mkdir and touch file
1267 local path="$1"
1268 mkdir -p "$(dirname "$path")"
1269 touch "$path"
1270 }
1271
1272 mkdir() { command mkdir -p "$@"; }
1273
1274 mo() { xset dpms force off; } # monitor off
1275
1276 net-dev-info() {
1277 e "lspci -nnk|gr -iA2 net"
1278 lspci -nnk|gr -iA2 net
1279 hr
1280 e "s lshw -C network"
1281 hr
1282 s lshw -C network
1283
1284 }
1285
1286 nopanic() {
1287 sudo tee -a /var/log/exim4/paniclog-archive </var/log/exim4/paniclog; sudo truncate -s0 /var/log/exim4/paniclog
1288 }
1289
1290
1291 otp() {
1292 oathtool --totp -b "$@" | xclip -selection clipboard
1293 }
1294
1295 p8() { ping 8.8.8.8; }
1296
1297 pakaraoke() {
1298 # from http://askubuntu.com/questions/456021/remove-vocals-from-mp3-and-get-only-instrumentals
1299 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
1300 }
1301
1302
1303 pfind() { #find *$1* in $PATH
1304 [[ $# != 1 ]] && { echo requires 1 argument; return 1; }
1305 local pathArray
1306 IFS=: pathArray=($PATH); unset IFS
1307 find "${pathArray[@]}" -iname "*$1*"
1308 }
1309
1310 pkx() { # package extract
1311 c `mktemp -d`
1312 pkg=$1
1313 cached=$(ls -t /var/cache/apt/archives/$pkg* | tail -n1)
1314 if [[ $cached ]]; then
1315 cp $cached .
1316 else
1317 aptitude download $pkg
1318 fi
1319 f=(*)
1320 ex $f
1321 rm -f $f
1322 }
1323
1324 pk1() {
1325 local pid
1326 pid=($(pgrep -f "$*"))
1327 case ${#pid[@]} in
1328 1)
1329 ps -F $pid
1330 m kill $pid
1331 ;;
1332 0) echo "no pid found" ;;
1333 *)
1334 ps -F ${pid[@]}
1335 ;;
1336 esac
1337 }
1338
1339 pick-trash() {
1340 # trash-restore lists everything that has been trashed at or below CWD
1341 # This picks out files just in CWD, not subdirectories,
1342 # which also match grep $1, usually use $1 for a time string
1343 # which you get from running restore-trash once first
1344 local name x ask
1345 local nth=1
1346 # last condition is to not ask again for ones we skipped
1347 while name="$( echo | restore-trash | gr "$PWD/[^/]\+$" | gr "$1" )" \
1348 && [[ $name ]] && (( $(wc -l <<<"$name") >= nth )); do
1349 name="$(echo "$name" | head -n $nth | tail -n 1 )"
1350 read -p "$name [Y/n] " ask
1351 if [[ ! $ask || $ask == [Yy] ]]; then
1352 x=$( echo "$name" | gr -o "^\s*[0-9]*" )
1353 echo $x | restore-trash > /dev/null
1354 elif [[ $ask == [Nn] ]]; then
1355 nth=$((nth+1))
1356 else
1357 return
1358 fi
1359 done
1360 }
1361
1362
1363 pub() {
1364 rld /a/h/_site/ li:/var/www/iankelling.org/html
1365 }
1366
1367 pubip() { curl -4s https://icanhazip.com; }
1368 pubip6() { curl -6s https://icanhazip.com; }
1369 whatismyip() { pubip; }
1370
1371 pumpa() {
1372 # fixes the menu bar in xmonad. this won\'t be needed when xmonad
1373 # packages catches up on some changes in future (this is written in
1374 # 4/2017)
1375 #
1376 # geekosaur: so youll want to upgrade to xmonad 0.13 or else use a
1377 # locally modified XMonad.Hooks.ManageDocks that doesnt set the
1378 # work area; turns out it\'s impossible to set correctly if you are
1379 # not a fully EWMH compliant desktop environment
1380 #
1381 # geekosaur: chrome shows one failure mode, qt/kde another, other
1382 # gtk apps a third, ... I came up with a setting that works for me
1383 # locally but apparently doesnt work for others, so we joined the
1384 # other tiling window managers in giving up on setting it at all
1385 #
1386 xprop -root -remove _NET_WORKAREA
1387 command pumpa &r
1388 }
1389
1390
1391 pwgen() {
1392 # -m = min length
1393 # -x = max length
1394 # -t = print pronunciation
1395 apg -m 14 -x 17 -t
1396 for (( i=0; i<10; i++ )); do
1397 shuf -n3 /usr/share/hunspell/en_US.dic | sed 's,/.*,,' | paste -sd . -
1398
1399 done
1400 }
1401
1402 pwlong() {
1403 # -M CLN = use Caps, Lowercase, Numbers
1404 # -n 1 = 1 password
1405 # -a 1 = use random instead of pronounceable algorithm
1406 apg -m 50 -x 70 -n 1 -a 1 -M CLN
1407 }
1408
1409
1410 q() { # start / launch a program in the backround and redir output to null
1411 "$@" &> /dev/null &
1412 }
1413
1414 r() {
1415 exit "$@" 2>/dev/null
1416 }
1417
1418 rbpipe() { rbt post -o --diff-filename=- "$@"; }
1419 rbp() { rbt post -o "$@"; }
1420
1421 resolvcat() {
1422 local f
1423 f=/etc/resolv.conf
1424 echo $f:; ccat $f
1425 hr; echo dnsmasq is $(systemctl is-active dnsmasq)
1426 f=/var/run/dnsmasq/resolv.conf
1427 hr; echo $f:; ccat $f
1428 f=/etc/dnsmasq-servers.conf
1429 hr; echo $f:; ccat $f
1430 }
1431
1432 rl() {
1433 # rsync, root is required to keep permissions right.
1434 # rsync --archive --human-readable --verbose --itemize-changes --checksum \(-ahvic\) \
1435 # --no-times --delete
1436 # basically, make an exact copy, use checksums instead of file times to be more accurate
1437 rsync -ahvic --delete "$@"
1438 }
1439 rld() {
1440 # like rlu, but dont delete files on the target end which
1441 # do not exist on the original end.
1442 rsync -ahvic "$@"
1443 }
1444 complete -F _rsync -o nospace rld rl rlt
1445
1446 rlt() {
1447 # rl without preserving modification time.
1448 rsync -ahvic --delete --no-t "$@"
1449 }
1450
1451 rlu() { # [OPTS] HOST PATH
1452 # eg. rlu -opts frodo /testpath
1453 # relative paths will expanded with readlink -f.
1454 # useful for selectively sending dirs which have been synced with unison,
1455 # where the path is the same on both hosts.
1456 opts=("${@:1:$#-2}") # 1 to last -2
1457 path="${@:$#}" # last
1458 host="${@:$#-1:1}" # last -1
1459 if [[ $path == .* ]]; then
1460 path=$(readlink -f $path)
1461 fi
1462 # rync here uses checksum instead of time so we dont mess with
1463 # unison relying on time as much. g is for group, same reason
1464 # to keep up with unison.
1465 s rsync -rlpchviog --relative "${opts[@]}" "$path" "root@$host:/";
1466 }
1467
1468 # only run on MAIL_HOST. simpler to keep this on one system.
1469 r2eadd() { # usage: name url
1470 # initial setup of rss2email:
1471 # r2e new r2e@iankelling.org
1472 # that initializes files, and sets default email.
1473 # symlink to the config doesnt work, so I copied it to /p/c
1474 # and then use cli option to specify explicit path.
1475 # Only option changed from default config is to set
1476 # force-from = True
1477 #
1478 # or else for a few feeds, the from address is set by the feed, and
1479 # if I fail delivery, then I send a bounce message to that from
1480 # address, which makes me be a spammer.
1481
1482 r2e add $1 "$2" $1@r2e.iankelling.org
1483 # get up to date and dont send old entries now:
1484 r2e run --no-send $1
1485 }
1486 r2e() { command r2e -d /p/c/rss2email.json -c /p/c/rss2email.cfg "$@"; }
1487
1488 rspicy() { # usage: HOST DOMAIN
1489 # connect to spice vm remote host. use vspicy for local host
1490 local port=$(ssh $1<<EOF
1491 sudo virsh dumpxml $2|grep "<graphics.*type='spice'" | \
1492 sed -rn "s/.*port='([0-9]+).*/\1/p"
1493 EOF
1494 )
1495 if [[ $port ]]; then
1496 spicy -h $1 -p $port
1497 else
1498 echo "error: no port found. check that the domain is running."
1499 fi
1500 }
1501
1502 rmstrips() {
1503 ssh fencepost head -n 300 /gd/gnuorg/EventAndTravelInfo/rms-current-trips.txt | less
1504 }
1505
1506 s() {
1507 # background
1508 # I use a function because otherwise we cant use in a script,
1509 # cant assign to variable.
1510 #
1511 # note: gksudo is recommended for X apps because it does not set the
1512 # home directory to the same, and thus apps writing to ~ fuck things up
1513 # with root owned files.
1514 #
1515 if [[ $EUID != 0 || $1 == -* ]]; then
1516 SUDOD="$PWD" sudo -i "$@"
1517 else
1518 "$@"
1519 fi
1520 }
1521
1522 safe_rename() { # warn and dont rename if file exists.
1523 # mv -n exists, but it\'s silent
1524 if [[ $# != 2 ]]; then
1525 echo safe_rename error: $# args, need 2 >2
1526 return 1
1527 fi
1528 if [[ $1 != $2 ]]; then # yes, we want to silently ignore this
1529 if [[ -e $2 || -L $2 ]]; then
1530 echo "Cannot rename $1 to $2 as it already exists."
1531 else
1532 mv -vi "$1" "$2"
1533 fi
1534 fi
1535 }
1536
1537
1538 sb() { # sudo bash -c
1539 # use sb instead of s is for sudo redirections,
1540 # eg. sb 'echo "ok fine" > /etc/file'
1541 local SUDOD="$PWD"
1542 sudo -i bash -c "$@"
1543 }
1544 complete -F _root_command s sb
1545
1546 scssl() {
1547 # s gem install scss-lint
1548 pushd /a/opt/thoughtbot-guides
1549 git pull --stat
1550 popd
1551 scss-lint -c /a/opt/thoughtbot-guides/style/sass/.scss-lint.yml "$@"
1552 }
1553
1554 ser() {
1555 local s; [[ $EUID != 0 ]] && s=s
1556 if type -p systemctl &>/dev/null; then
1557 $s systemctl $1 $2
1558 else
1559 $s service $2 $1
1560 fi
1561 }
1562 # like restart, but do nothing if its not already started
1563 srestart() {
1564 local service=$1
1565 if [[ $(s systemctl --no-pager show -p ActiveState $service ) == ActiveState=active ]]; then
1566 systemctl restart $service
1567 fi
1568 }
1569 stopnm() {
1570 ser stop NetworkManager
1571 ser stop dnsmasq
1572 s resolvconf -d NetworkManager
1573 ser start dnsmasq
1574 }
1575 startnm() {
1576 ser start NetworkManager
1577 s nmtui-connect
1578 }
1579
1580 setini() { # set a value in a .ini style file
1581 key="$1" value="$2" section="$3" file="$4"
1582 if [[ -s $file ]]; then
1583 sed -ri -f - "$file" <<EOF
1584 # remove existing keys
1585 / *\[$section\]/,/^ *\[[^]]+\]/{/^\s*$key[[:space:]=]/d}
1586 # add key
1587 /^\s*\[$section\]/a $key=$value
1588 # from section to eof, do nothing
1589 /^\s*\[$section\]/,\$b
1590 # on the last line, if we haven't found section yet, add section and key
1591 \$a [$section]\\
1592 $key=$value
1593 EOF
1594 else
1595 cat >"$file" <<EOF
1596 [$section]
1597 $key=$value
1598 EOF
1599 fi
1600 }
1601
1602 sgo() { # service go
1603 service=$1
1604 ser restart $service || return 1
1605 if type -p systemctl &>/dev/null; then
1606 ser enable $service
1607 fi
1608 }
1609
1610
1611 shellck() {
1612 # 2086 = unquoted $var
1613 # 2046 = unquoted $(cmd)
1614 # i had -x as an arg, but debian testing(stretch) doesn\'t support it
1615 shellcheck -e 2086,2046,2068,2006,2119 "$@"
1616 }
1617
1618 skaraoke() {
1619 local tmp out
1620 in="$1"
1621 out=${2:-${1%.*}.sh}
1622 tmp=$(mktemp -d)
1623 script -t -c "mpv --no-config --no-resume-playback --no-terminal --no-audio-display '$1'" $tmp/typescript 2>$tmp/timing
1624 # todo, the current sleep seems pretty good, but it
1625 # would be nice to have an empirical measurement, or
1626 # some better wait to sync up.
1627 #
1628 # note: --loop-file=no prevents it from hanging if you have that
1629 # set to inf the mpv config.
1630 # --loop=no prevents it from exit code 3 due to stdin if you
1631 # had it set to inf in mpv config.
1632 #
1633 # args go to mpv, for example --volume=80, 50%
1634 cat >$out <<EOFOUTER
1635 #!/bin/bash
1636 trap "trap - TERM && kill 0" INT TERM ERR; set -e
1637 ( sleep .2; scriptreplay <( cat <<'EOF'
1638 $(cat $tmp/timing)
1639 EOF
1640 ) <( cat <<'EOF'
1641 $(cat $tmp/typescript)
1642 EOF
1643 ))&
1644 base64 -d - <<'EOF'| mpv --loop=no --loop-file=no --no-terminal --no-audio-display "\$@" -
1645 $(base64 "$1")
1646 EOF
1647 kill 0
1648 EOFOUTER
1649 rm -r $tmp
1650 chmod +x $out
1651 }
1652
1653 slog() {
1654 # log with script. timing is $1.t and script is $1.s
1655 # -l to save to ~/typescripts/
1656 # -t to add a timestamp to the filenames
1657 local logdir do_stamp arg_base
1658 (( $# >= 1 )) || { echo "arguments wrong"; return 1; }
1659 logdir="/a/dt/"
1660 do_stamp=false
1661 while getopts "lt" option
1662 do
1663 case $option in
1664 l ) arg_base=$logdir ;;
1665 t ) do_stamp=true ;;
1666 esac
1667 done
1668 shift $(($OPTIND - 1))
1669 arg_base+=$1
1670 [[ -e $logdir ]] || mkdir -p $logdir
1671 $do_stamp && arg_base+=$(date +%F.%T%z)
1672 script -t $arg_base.s 2> $arg_base.t
1673 }
1674 splay() { # script replay
1675 #logRoot="$HOME/typescripts/"
1676 #scriptreplay "$logRoot$1.t" "$logRoot$1.s"
1677 scriptreplay "$1.t" "$1.s"
1678 }
1679
1680 smeld() { # ssh meld usage host1 host2 file
1681 meld <(ssh $1 cat $3) <(ssh $2 cat $3)
1682 }
1683
1684 spd() {
1685 PATH=/usr/local/spdhackfix:$PATH command spd "$@"
1686 }
1687
1688 spend() {
1689 s systemctl suspend
1690 }
1691
1692 sr() {
1693 # sudo redo. be aware, this command may not work right on strange distros or earlier software
1694 if [[ $# == 0 ]]; then
1695 sudo -E bash -c -l "$(history -p '!!')"
1696 else
1697 echo this command redos last history item. no argument is accepted
1698 fi
1699 }
1700
1701 srm () {
1702 # with -ll, less secure but faster.
1703 command srm -ll "$@"
1704 }
1705
1706 srun() {
1707 scp $2 $1:/tmp
1708 ssh $1 /tmp/${2##*/} "${@:2}"
1709 }
1710
1711 sss() { # ssh solo
1712 ssh -oControlMaster=no -oControlPath=/ "$@"
1713 }
1714 ssk() {
1715 local -a opts=()
1716 while [[ $1 == -* ]]; do
1717 opts+=("$1")
1718 shift
1719 done
1720 m pkill -f "^ssh: /tmp/ssh_mux_${USER}_${1#*@}_22_"
1721 m ssh "${opts[@]}" "$@"
1722 }
1723
1724 swap() {
1725 local tmp
1726 tmp=$(mktemp)
1727 mv $1 $tmp
1728 mv $2 $1
1729 mv $tmp $2
1730 }
1731
1732 t() {
1733 local x
1734 local -a args
1735 if type -t trash-put >/dev/null; then
1736 # skip args that dont exist, or else trash-put will have an error
1737 for x in "$@"; do
1738 if [[ -e $x || -L $x ]]; then
1739 args+=("$x")
1740 fi
1741 done
1742 [[ ! ${args[@]} ]] || trash-put "${args[@]}"
1743 else
1744 rm -rf "$@"
1745 fi
1746 }
1747
1748
1749 tclock() {
1750 clear
1751 date +%l:%_M
1752 len=60
1753 # this goes to full width
1754 #len=${1:-$((COLUMNS -7))}
1755 x=1
1756 while true; do
1757 if (( x == len )); then
1758 end=true
1759 d="$(date +%l:%_M) "
1760 else
1761 end=false
1762 d=$(date +%l:%M:%_S)
1763 fi
1764 echo -en "\r"
1765 echo -n "$d"
1766 for ((i=0; i<x; i++)); do
1767 if (( i % 6 )); then
1768 echo -n _
1769 else
1770 echo -n .
1771 fi
1772 done
1773 if $end; then
1774 echo
1775 x=1
1776 else
1777 x=$((x+1))
1778 fi
1779 sleep 5
1780 done
1781 }
1782
1783
1784 te() {
1785 # test existence / exists
1786 local ret=0
1787 for x in "$@"; do
1788 [[ -e "$x" || -L "$x" ]] || ret=1
1789 done
1790 return $ret
1791 }
1792
1793 # mail related
1794 testmail() {
1795 declare -gi _seq; _seq+=1
1796 echo "test body" | m mail -s "test mail from $HOSTNAME, $_seq" "${@:-root@localhost}"
1797 # for testing to send from an external address, you can do for example
1798 # -fian@iank.bid -aFrom:ian@iank.bid web-6fnbs@mail-tester.com
1799 # note in exim, you can retry a deferred message
1800 # s exim -M MSG_ID
1801 # MSG_ID is in /var/log/exim4/mainlog, looks like 1ccdnD-0001nh-EN
1802 }
1803
1804 # to test sieve, use below command. for fsf mail, see fsf-get-mail script.
1805 # make modifications, then copy to live file, use -eW to actually modify mailbox
1806 # cp /p/c/subdir_files/sieve/personal{test,}.sieve; testsievelist -eW INBOX
1807 #
1808 # Another option is to use sieve-test SCRIPT MAIL_FILE. note,
1809 # sieve-test doesnt know about envelopes, Im not sure if sieve-filter does.
1810
1811 # sieve with output filter. arg is mailbox, like INBOX.
1812 # This depends on dovecot conf, notably mail_location in /etc/dovecot/conf.d/10-mail.conf
1813
1814 testsievelist() {
1815 sieve-filter ~/sieve/maintest.sieve "$@" >/tmp/testsieve.log 2> >(tail) && sed -rn '/^Performed actions:/{n;n;p}' /tmp/testsieve.log | sort -u
1816 }
1817
1818
1819 # mail related
1820 # plain sieve
1821 testsieve() {
1822 sieve-filter ~/sieve/main.sieve "$@"
1823 }
1824
1825 # mail related
1826 testexim() {
1827 # testmail above calls sendmail, which is a link to exim/postfix.
1828 # its docs dont say a way of adding an argument
1829 # to sendmail to turn on debug output. We could make a wrapper, but
1830 # that is a pain. Exim debug args are documented here:
1831 # http://www.exim.org/exim-html-current/doc/html/spec_html/ch-the_exim_command_line.html
1832 #
1833 # http://www.exim.org/exim-html-current/doc/html/spec_html/ch-building_and_installing_exim.html
1834 # note, for exim daemon, you can turn on debug options by
1835 # adding -d, etc to COMMONOPTIONS in
1836 # /etc/default/exim4
1837 exim -d -t <<'EOF'
1838 From: ian@iankelling.org
1839 To: root@lists0p.fsf.org
1840 Subject: Testing Exim
1841
1842 This is a test message.
1843 EOF
1844 }
1845
1846 # toggle keyboard
1847 tk() {
1848 # based on
1849 # https://askubuntu.com/questions/160945/is-there-a-way-to-disable-a-laptops-internal-keyboard
1850 id=$(xinput --list --id-only 'AT Translated Set 2 keyboard')
1851 if xinput list | grep -F '∼ AT Translated Set 2 keyboard' &>/dev/null; then
1852 echo enabling keyboard
1853 # find the first slave keyboard number, they are all the same in my output.
1854 # if they werent, worst case we would need to save the slave number somewhere
1855 # when it got disabled.
1856 slave=$(xinput list | sed -n 's/.*slave \+keyboard (\([0-9]*\)).*/\1/p' | head -n1)
1857 xinput reattach $id $slave
1858 else
1859 xinput float $id
1860 fi
1861 }
1862
1863 tm() {
1864 # timer in minutes
1865 # --no-config
1866 (sleep $(calc "$@ * 60") && mpv --no-config --volume 50 /a/bin/data/alarm.mp3) > /dev/null 2>&1 &
1867 }
1868
1869 trg() { transmission-remote-gtk&r; }
1870 trc() {
1871 # example, set global upload limit to 100 kilobytes:
1872 # trc -u 100
1873 TR_AUTH=":$(jq -r .profiles[0].password ~/.config/transmission-remote-gtk/config.json)" transmission-remote transmission.lan -ne "$@"
1874 }
1875
1876
1877 tu() {
1878 local s;
1879 local dir="$(dirname "$1")"
1880 if [[ -e $1 && ! -w $1 || ! -w $(dirname "$1") ]]; then
1881 s=s;
1882 fi
1883 $s teeu "$@"
1884 }
1885
1886 tx() { # toggle set -x, and the prompt so it doesnt spam
1887 if [[ $- == *x* ]]; then
1888 set +x
1889 PROMPT_COMMAND=prompt-command
1890 # disabled due to issue on stretch, running ll we get error. something
1891 # about the DEBUG trap is broken
1892 # if [[ $TERM == *(screen*|xterm*|rxvt*) ]]; then
1893 # trap 'settitle "$BASH_COMMAND"' DEBUG
1894 # fi
1895 else
1896 # normally, i would just execute these commands in the function.
1897 # however, DEBUG is not inherited, so we need to run it outside a function.
1898 # And we want to run set -x afterwards to avoid spam, so we cram everything
1899 # in here, and then it will run after this function is done.
1900 #PROMPT_COMMAND='trap DEBUG; unset PROMPT_COMMAND; PS1="\w \$ "; set -x'
1901
1902 unset PROMPT_COMMAND
1903 PS1="\w \$ "
1904 set -x
1905 fi
1906 }
1907
1908 psnetns() {
1909 # show all processes in the network namespace $1.
1910 # blank entries appear to be subprocesses/threads
1911 local x netns
1912 netns=$1
1913 ps -w | head -n 1
1914 s find -L /proc/[1-9]*/task/*/ns/net -samefile /run/netns/$netns | cut -d/ -f5 | \
1915 while read l; do
1916 x=$(ps -w --no-headers -p $l);
1917 if [[ $x ]]; then echo "$x"; else echo $l; fi;
1918 done
1919 }
1920
1921 m() { printf "%s\n" "$*"; "$@"; }
1922
1923
1924 vpncmd() {
1925 #m s nsenter -t $(pgrep -f "/usr/sbin/openvpn .* --config /etc/openvpn/.*pia.conf") -n -m "$@"
1926 m s nsenter -t $(pgrep -f "/usr/sbin/openvpn .* --config /etc/openvpn/.*client.conf") -n -m "$@"
1927 }
1928 vpnf() {
1929 vpncmd gksudo -u iank "firefox -no-remote -P vpn" &r
1930 }
1931 vpni() {
1932 vpncmd gksudo -u iank "$*"
1933 }
1934 vpnbash() {
1935 vpncmd bash
1936 }
1937
1938
1939
1940 virshrm() {
1941 for x in "$@"; do virsh destroy "$x"; virsh undefine "$x"; done
1942 }
1943
1944 vm-set-listen(){
1945 local t=$(mktemp)
1946 local vm=$1
1947 local ip=$2
1948 s virsh dumpxml $vm | sed -r "s/(<listen.*address=')([^']+)/\1$ip/" | \
1949 sed -r "s/listen='[^']+/listen='$ip/"> $t
1950 s virsh undefine $vm
1951 s virsh define $t
1952 }
1953
1954
1955 vmshare() {
1956 vm-set-listen $1 0.0.0.0
1957 }
1958
1959
1960 vmunshare() {
1961 vm-set-listen $1 127.0.0.1
1962 }
1963
1964
1965 vpn() {
1966 if [[ -e /lib/systemd/system/openvpn-client@.service ]]; then
1967 local vpn_service=openvpn-client
1968 else
1969 local vpn_service=openvpn
1970 fi
1971
1972 [[ $1 ]] || { echo need arg; return 1; }
1973 journalctl --unit=$vpn_service@$1 -f -n0 &
1974 s systemctl start $vpn_service@$1
1975 # sometimes the ask-password agent does not work and needs a delay.
1976 sleep .5
1977 # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=779240
1978 # noticed around 8-2017 after update from around stretch release
1979 # on debian testing, even though the bug is much older.
1980 s systemd-tty-ask-password-agent
1981 }
1982
1983 vpnoff() {
1984 [[ $1 ]] || { echo need arg; return 1; }
1985 if [[ -e /lib/systemd/system/openvpn-client@.service ]]; then
1986 local vpn_service=openvpn-client
1987 else
1988 local vpn_service=openvpn
1989 fi
1990 s systemctl stop $vpn_service@$1
1991 }
1992
1993
1994 vrm() {
1995 virsh destroy $1
1996 virsh undefine $1
1997 }
1998
1999
2000
2001 vspicy() { # usage: VIRSH_DOMAIN
2002 # connect to vms made with virt-install
2003 spicy -p $(sudo virsh dumpxml "$1"|grep "<graphics.*type='spice'"|\
2004 sed -r "s/.*port='([0-9]+).*/\1/")
2005 }
2006
2007 wian() {
2008 cat-new-files /m/4e/INBOX/new
2009 }
2010
2011 wtr() { curl wttr.in/boston; }
2012
2013 xl() {
2014 if pgrep gnome-screensav &>/dev/null; then
2015 # this command actually starts gnome-screensaver if it isn\'t running.
2016 # lololol, what crap
2017 gnome-screensaver-command --exit &>/dev/null
2018 fi
2019 mate-screensaver-command --exit &>/dev/null
2020 if ! pidof xscreensaver; then
2021 pushd /
2022 xscreensaver &
2023 popd
2024 # 1 was not long enough
2025 sleep 3
2026 fi
2027 xscreensaver-command -activate
2028 }
2029
2030 xevkb() { xev -event keyboard; }
2031
2032 # * misc stuff
2033
2034 # from curl cheat.sh/:bash_completion
2035 _cheatsh_complete_curl()
2036 {
2037 local cur prev opts
2038 _get_comp_words_by_ref -n : cur
2039
2040 COMPREPLY=()
2041 #cur="${COMP_WORDS[COMP_CWORD]}"
2042 prev="${COMP_WORDS[COMP_CWORD-1]}"
2043 opts="$(curl -s cheat.sh/:list | sed s@^@cheat.sh/@)"
2044
2045 if [[ ${cur} == cheat.sh/* ]] ; then
2046 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
2047 __ltrim_colon_completions "$cur"
2048 return 0
2049 fi
2050 }
2051 complete -F _cheatsh_complete_curl curl
2052
2053
2054 if [[ $- == *i* ]]; then
2055 # commands to run when bash exits normally
2056 trap "hl" EXIT
2057 fi
2058
2059
2060 # temporary variables to test colorization
2061 # some copied from gentoo /etc/bash/bashrc,
2062 use_color=false
2063 # dircolors --print-database uses its own built-in database
2064 # instead of using /etc/DIR_COLORS. Try to use the external file
2065 # first to take advantage of user additions.
2066 safe_term=${TERM//[^[:alnum:]]/?} # sanitize TERM
2067 match_lhs=""
2068 [[ -f ~/.dir_colors ]] && match_lhs="${match_lhs}$(<~/.dir_colors)"
2069 [[ -f /etc/DIR_COLORS ]] && match_lhs="${match_lhs}$(</etc/DIR_COLORS)"
2070 [[ -z ${match_lhs} ]] \
2071 && type -P dircolors >/dev/null \
2072 && match_lhs=$(dircolors --print-database)
2073 # test if our $TERM is in the TERM values in dircolor
2074 [[ $'\n'${match_lhs} == *$'\n'"TERM "${safe_term}* ]] && use_color=true
2075
2076
2077 if ${use_color} && [[ $- == *i* ]]; then
2078
2079 if [[ $XTERM_VERSION == Cygwin* ]]; then
2080 get_term_color() {
2081 for x in "$@"; do
2082 case $x in
2083 underl) echo -n $'\E[4m' ;;
2084 bold) echo -n $'\E[1m' ;;
2085 red) echo -n $'\E[31m' ;;
2086 green) echo -n $'\E[32m' ;;
2087 blue) echo -n $'\E[34m' ;;
2088 cyan) echo -n $'\E[36m' ;;
2089 yellow) echo -n $'\E[33m' ;;
2090 purple) echo -n $'\E[35m' ;;
2091 nocolor) echo -n $'\E(B\E[m' ;;
2092 esac
2093 done
2094 }
2095
2096 else
2097 get_term_color() {
2098 for x in "$@"; do
2099 case $x in
2100 underl) echo -n $(tput smul) ;;
2101 bold) echo -n $(tput bold) ;;
2102 red) echo -n $(tput setaf 1) ;;
2103 green) echo -n $(tput setaf 2) ;;
2104 blue) echo -n $(tput setaf 4) ;;
2105 cyan) echo -n $(tput setaf 6) ;;
2106 yellow) echo -n $(tput setaf 3) ;;
2107 purple) echo -n $(tput setaf 5) ;;
2108 nocolor) echo -n $(tput sgr0) ;; # no font attributes
2109 esac
2110 done
2111 }
2112 fi
2113 else
2114 get_term_color() {
2115 :
2116 }
2117 fi
2118 # Try to keep environment pollution down, EPA loves us.
2119 unset safe_term match_lhs use_color
2120
2121
2122
2123 # * prompt
2124
2125
2126 if [[ $- == *i* ]]; then
2127 # git branch/status prompt function
2128 if [[ $OS != Windows_NT ]]; then
2129 GIT_PS1_SHOWDIRTYSTATE=true
2130 fi
2131 # arch source lopip show -fcation
2132 [[ -r /usr/share/git/git-prompt.sh ]] && source /usr/share/git/git-prompt.sh
2133 # fedora/debian source
2134 [[ -r /usr/share/git-core/contrib/completion/git-prompt.sh ]] && source /usr/share/git-core/contrib/completion/git-prompt.sh
2135
2136 # in case we didnt source git-prompt.sh
2137 if ! declare -f __git_ps1 > /dev/null; then
2138 __git_ps1() {
2139 :
2140 }
2141 fi
2142
2143 # this needs to come before next ps1 stuff
2144 # this stuff needs bash 4, feb 2009,
2145 # old enough to no longer condition on $BASH_VERSION anymore
2146 shopt -s autocd
2147 shopt -s dirspell
2148 PS1='\w'
2149 if [[ $- == *i* ]] && [[ ! $RLC_INSIDE_EMACS ]]; then
2150 PROMPT_DIRTRIM=2
2151 bind -m vi-command B:shell-backward-word
2152 bind -m vi-command W:shell-forward-word
2153 fi
2154
2155 if [[ $SSH_CLIENT || $SUDO_USER ]]; then
2156 PS1="\h $PS1"
2157 fi
2158
2159 prompt-command() {
2160 local return=$? # this MUST COME FIRST
2161 local psc pst ps_char ps_color stale_subvol
2162 unset IFS
2163 history -a # save history
2164
2165
2166
2167 case $return in
2168 0) ps_color="$(get_term_color blue)"
2169 ps_char='\$'
2170 ;;
2171 1) ps_color="$(get_term_color green)"
2172 ps_char="$return \\$"
2173 ;;
2174 *) ps_color="$(get_term_color yellow)"
2175 ps_char="$return \\$"
2176 ;;
2177 esac
2178 if [[ ! -O . ]]; then # not owner
2179 if [[ -w . ]]; then # writable
2180 ps_color="$(get_term_color bold red)"
2181 else
2182 ps_color="$(get_term_color bold green)"
2183 fi
2184 fi
2185 # I would set nullglob, but bash has had bugs where that
2186 # doesnt work if not in top level.
2187 if [[ -e /nocow/btrfs-stale ]] && ((`command ls -AUq /nocow/btrfs-stale|wc -l`)); then
2188 ps_char="! $ps_char"
2189 fi
2190 if [[ ! $SSH_CLIENT && $MAIL_HOST != $HOSTNAME ]]; then
2191 ps_char="@ $ps_char"
2192 fi
2193 PS1="${PS1%"${PS1#*[wW]}"} \[$ps_color\]$ps_char\[$(get_term_color nocolor)\] "
2194 # emacs completion doesnt like the git prompt atm, so disabling it.
2195 #PS1="${PS1%"${PS1#*[wW]}"}$(__git_ps1 ' (%s)') \[$ps_color\]$ps_char\[$(get_term_color nocolor)\] "
2196 }
2197 PROMPT_COMMAND=prompt-command
2198
2199 settitle () {
2200 if [[ $TERM == screen* ]]; then
2201 local title_escape="\033]..2;"
2202 else
2203 local title_escape="\033]0;"
2204 fi
2205 if [[ $* != prompt-command ]]; then
2206 echo -ne "$title_escape$USER@$HOSTNAME ${PWD/#$HOME/~} "
2207 printf "%s" "$*"
2208 echo -ne "\007"
2209 fi
2210 }
2211
2212 # for titlebar.
2213 # condition from the screen man page i think.
2214 # note: duplicated in tx()
2215 # disabled. see note in tx
2216 # if [[ $TERM == *(screen*|xterm*|rxvt*) ]]; then
2217 # trap 'settitle "$BASH_COMMAND"' DEBUG
2218 # else
2219 # trap DEBUG
2220 # fi
2221
2222 fi
2223
2224 reset-konsole() {
2225 # we also have a file in /a/c/...konsole...
2226 local f=$HOME/.config/konsolerc
2227 setini DefaultProfile profileian.profile "Desktop Entry" $f
2228 setini Favorites profileian.profile "Favorite Profiles" $f
2229 setini ShowMenuBarByDefault false KonsoleWindow $f
2230 setini TabBarPosition Top TabBar $f
2231 }
2232
2233 reset-sakura() {
2234 while read k v; do
2235 setini $k $v sakura /a/c/subdir_files/.config/sakura/sakura.conf
2236 done <<'EOF'
2237 colorset1_back rgb(33,37,39
2238 less_questions true
2239 audible_bell No
2240 visible_bell No
2241 disable_numbered_tabswitch true
2242 scroll_lines 10000000
2243 scrollbar true
2244 EOF
2245 }
2246
2247 reset-xscreensaver() {
2248 # except for spash, i set these by setting gui options in
2249 # xscreensaver-command -demo
2250 # then finding the corresponding option in .xscreensaver
2251 # spash, i happened to notice in .xscreensaver
2252 #
2253 # dpmsOff, monitor doesnt come back on using old free software supported nvidia card
2254 cat > /home/iank/.xscreensaver <<'EOF'
2255 mode: blank
2256 dpmsEnabled: True
2257 dpmsStandby: 0:02:00
2258 dpmsSuspend: 0:03:00
2259 dpmsOff: 0:00:00
2260 timeout: 0:02:00
2261 lock: True
2262 lockTimeout: 0:03:00
2263 splash: False
2264 EOF
2265
2266 }
2267
2268
2269 # * stuff that makes sense to be at the end
2270 if [[ "$SUDOD" ]]; then
2271 cd "$SUDOD"
2272 unset SUDOD
2273 elif [[ -d /a ]] && [[ $PWD == $HOME ]] && [[ $- == *i* ]]; then
2274 cd /a
2275 fi
2276
2277
2278 # best practice
2279 unset IFS
2280
2281
2282 # for mitmproxy to get a newer python.
2283 # commented until i want to use it because it
2284 # noticably slows bash startup
2285 #
2286 #if [[ $EUID != 0 && -e ~/.pyenv/bin ]]; then
2287 # export PATH="~/.pyenv/bin:$PATH"
2288 # eval "$(pyenv init -)"
2289 # eval "$(pyenv virtualenv-init -)"
2290 #fi
2291
2292
2293
2294 export GOPATH=$HOME/go
2295 path_add $GOPATH/bin
2296 path_add /usr/local/go/bin
2297
2298 # I have the git repo and a release. either one should work.
2299 # I have both because I was trying to solve an issue that
2300 # turned out to be unrelated.
2301 # ARDUINO_PATH=/a/opt/Arduino/build/linux/work
2302 export ARDUINO_PATH=/a/opt/arduino-1.8.9
2303
2304 path_add --end ~/.npm-global
2305
2306 # taken from default changes to bashrc and bash_profile
2307 path_add --end $HOME/.rvm/bin
2308 [[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*
2309
2310 export BASEFILE_DIR=/a/bin/fai-basefiles
2311
2312 export ANDROID_HOME=/opt/android
2313
2314 # didnt get drush working, if I did, this seems like the
2315 # only good thing to include for it.
2316 # Include Drush completion.
2317 # if [ -f "/home/ian/.drush/drush.complete.sh" ] ; then
2318 # source /home/ian/.drush/drush.complete.sh
2319 # fi
2320
2321
2322 # https://wiki.archlinux.org/index.php/Xinitrc#Autostart_X_at_login
2323 # i added an extra condition as gentoo xorg guide says depending on
2324 # $DISPLAY is fragile.
2325 if [[ ! $DISPLAY && $XDG_VTNR == 1 ]] && shopt -q login_shell && isarch; then
2326 exec startx
2327 fi
2328
2329
2330 # ensure no bad programs appending to this file will have an affect
2331 return 0