X-Git-Url: https://iankelling.org/git/?a=blobdiff_plain;f=brc2;h=676c5973a760a2c7936cd24c901336a8f09b2727;hb=b186607514fbcf10bd5664ccb759a6e873f048c7;hp=c65e578a09afdc9bc00c7c6e4e52315b9f04544a;hpb=89fc59d6e4bbeb1778c6aaaee776122dcf790871;p=distro-setup diff --git a/brc2 b/brc2 index c65e578..676c597 100644 --- a/brc2 +++ b/brc2 @@ -290,7 +290,10 @@ tback() { # s sshfs bu@$host:/bu/home/md /bu/mnt -o reconnect,ServerAliveInterval=20,ServerAliveCountMax=30 -o allow_other eqgo() { - enn -M "$(exiqgrep -i -r.\*)" + local -a array tmpstr + tmpstr=$(exiqgrep -i -r.\*) + mapfile -t array <<<"$tmpstr" + enn -M "${array[@]}" } eqgo1() { enn -M "$(exipick -i -r.\*|h1)" @@ -349,7 +352,7 @@ alerts() { ralerts() { # remote alerts local ret shell # this list is duplicated in check-remote-mailqs - for h in bk je li frodo kwwg x3wg x2wg kdwg sywg; do + for h in bk je li frodo x3wg kdwg sywg; do echo $h: shell="ssh $h" if [[ $HOSTNAME == "${h%wg}" ]]; then @@ -663,13 +666,14 @@ beetag() { local last_genre_i fstring tag id char new_item char_i genre tag remove doplay i j random path local do_rare_genres read_wait help line lsout tmp ls_line skip_lookback local escape_char escaped_input expected_input skip_input_regex right_pad erasable_line seek_sec - local pl_state_path pl_state_dir pl_state_file - local new_random pl_seed_path seed_num seed_file + local pl_state_path pl_state_dir pl_state_file tmpstr + local new_random pl_seed_path seed_num seed_file fmt first_play local -a pl_tags buttons button_map ids tags tmp_tags initial_ls ls_lines paths local -A button_i local -i i j volume scrolled id_count line_int skip_start pre_j_count head_count skip_lookback local -i overflow_lines overflow + first_play=true erasable_line=false escape_char=$(printf "\u1b") scrolled=999 # more than any $LINES @@ -741,8 +745,10 @@ beetag() { # PijokVipiotOzeph is just a random string for a delimiter + fmt='%ifdef{rating,$rating }'"$fstring"'$genre | $title - $artist - $album $length $id PijokVipiotOzeph $path' # shellcheck disable=SC2016 # obvious reason - mapfile -t initial_ls < <(beet ls -f '%ifdef{rating,$rating }'"$fstring"'$genre | $title - $artist - $album $length $id PijokVipiotOzeph $path' "$@" | { if $random; then sort -R --random-source=$pl_seed_path; else cat; fi; } ) + tmpstr=$(beet ls -f "$fmt" "$@" | { if $random; then sort -R --random-source=$pl_seed_path; else cat; fi; } ) + mapfile -t initial_ls <<<"$tmpstr" id_count=${#initial_ls[@]} for line in "${initial_ls[@]}"; do path="${line#*PijokVipiotOzeph }" @@ -785,11 +791,9 @@ beetag() { if $doplay; then #{ mpv --profile=a --volume=$volume --idle 2>&1 & } 2>/dev/null mpv --profile=a --volume=$volume --idle & - # if we dont sleep, we get error like this: + # if we dont sleep, can expect an error like this: # socat[1103381] E connect(5, AF=1 "/tmp/mpvsock", 14): Connection refused - # and strangely, it persists until mpv is restarted. - # .1 sleep was too little. - sleep .2 + sleep .1 fi while true; do @@ -815,7 +819,21 @@ beetag() { #{ mpv --profile=a --volume=$volume "$path" 2>&1 & } 2>/dev/null # old #{ beet play "--args=--volume=$volume" "id:$id" 2>&1 & } 2>/dev/null - mpvrpc '{ "command": ["loadfile", "'"$path"'"] }' + + # on slow systems, we may need to wait like .3 seconds before mpv + # is ready. so impatiently check until it is ready + if $first_play; then + first_play=false + for (( i=0; i<20; i++ )); do + if [[ $(mpvrpco '{ "command": ["get_property", "idle-active"] }' 2>/dev/null | jq .data) == true ]]; then + mpvrpc '{ "command": ["loadfile", "'"$path"'"] }' 2>/dev/null + break + fi + sleep .1 + done + else + mpvrpc '{ "command": ["loadfile", "'"$path"'"] }' + fi erasable_line=false fi while true; do @@ -827,7 +845,8 @@ beetag() { # Automatically skip to the next song if this one ends, unless # we turn off the autoplay. if (( ret == 142 )) || [[ ! $char ]]; then - if jobs -p | grep -q . &>/dev/null; then + if jobs -p | grep -q . &>/dev/null && \ + [[ $(mpvrpco '{ "command": ["get_property", "idle-active"] }' | jq .data) == false ]]; then continue else break @@ -838,13 +857,10 @@ beetag() { fi beetag-help if [[ $char == $'\n' ]]; then - # https://stackoverflow.com/a/5722874 - kill-bg-quiet break fi case $char in ";") - kill-bg-quiet j=$(( j - 2 )) break ;; @@ -854,7 +870,6 @@ beetag() { doplay=false else doplay=true - kill-bg-quiet mpvrpc '{ "command": ["loadfile", "'"$path"'"] }' erasable_line=false fi @@ -862,7 +877,6 @@ beetag() { continue ;; _) - kill-bg-quiet m beet rm --delete --force "id:$id" beetag-nostatus 4 # guessing. dont want to test atm break @@ -946,7 +960,7 @@ beetag() { read -rsn2 escaped_input skip_input_regex="^[0-9]+$" case $escaped_input in - # up char + # up char: show all the songs, use less '[A') skip_start=0 skip_lookback=5 @@ -1024,7 +1038,6 @@ beetag() { j=$(( j - 1 )) fi fi - kill-bg-quiet break fi ;; @@ -1272,14 +1285,16 @@ scr() { # tried to use ceb2txt but it failed because of schema # slightly different than what it expected. cheogram-get-logs() { - adb shell rm -r /storage/emulated/0/Download/Cheogram/Backup + #adb shell rm -r /storage/emulated/0/Download/Cheogram/Backup read -r -p "do cheogram backup on phone, do not enable extra cheogram data. press any key when done" cd /p/cheogram rm -rf Backup b adb pull /storage/emulated/0/Download/Cheogram/Backup sqlite3 b = 2 )); then + echo == $(( i / 6 + 1 )) == + fi + if (( sec > 10 )); then + printf "%3d %s\n" $sec "$l" + else + printf " %s\n" "$l" + fi + i=$(( i + 1 )) + done +} + +arbttlog() { + # from the log, show only the currently active window, and the number of + # seconds of input inactivity. + arbtt-dump "$@" | grep -v '( )\|Current Desktop' | sed -rn '/^[^ ]/{N;s/^(.{21})([0-9]*)[0-9]{3}m.*\(\*/\1\2/;s/^(.{21})[0-9]*.*\(\*/\1/;s/\n//;p}' ; } idea() { /a/opt/idea-IC-163.7743.44/bin/idea.sh "$@" & r @@ -3175,6 +3259,25 @@ vspicy() { # usage: VIRSH_DOMAIN wian() { cat-new-files /m/4e/INBOX/new } +wakehours() { + local sec + if (( $# != 1 )) ; then + echo wakehours: error: expected 1 arg, got $# >&2 + return 1 + fi + sec=$(( EPOCHSECONDS - $( date +%s -d $1am ) )) + printf "%d:%02d\n" $(( sec / 60 / 60)) $(( (sec / 60) % 60 )) +} + +calvis() { # calendar visualize + install -m 600 /dev/null /tmp/calendar-bytes + while read l; do + for char in $l; do + printf "\x$(printf "%x" $char)" >>/tmp/calendar-bytes + done + done < <(grep -v '[#-]' /p/calendar-data) + /p/c/proc/calendar/linux-amd64/calendar +} wtr() { curl wttr.in/boston; }