diff options
Diffstat (limited to 'pkgs/by-name/ne/neorg/functions/inputs.sh')
-rw-r--r-- | pkgs/by-name/ne/neorg/functions/inputs.sh | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/pkgs/by-name/ne/neorg/functions/inputs.sh b/pkgs/by-name/ne/neorg/functions/inputs.sh new file mode 100644 index 00000000..613d7574 --- /dev/null +++ b/pkgs/by-name/ne/neorg/functions/inputs.sh @@ -0,0 +1,38 @@ +#!/usr/bin/env dash + +inputs0add() { + url_file="$1" + + mkdir --parents "$(dirname "%NEORG_INPUTS_STORAGE_FILE")" + + clean "$url_file" >>"%NEORG_INPUTS_STORAGE_FILE" && + msg2 "Successfully added file '$url_file' with $(wc -l <"$url_file") entries to the url list" +} + +inputs0review() { + base_profile="$1" + + [ -f "%NEORG_INPUTS_STORAGE_FILE" ] || die "'%NEORG_INPUTS_STORAGE_FILE' is not a file. Have you added something with 'inputs_add' yet?" + + done_urls="$(mktmp)" + + # We assume that the project is not yet open. + firefox -P "$base_profile" & + + while read -r url; do + msg "Adding url '$url'" + notify-send "Neorg" "Reviewing '$url'" + firefox -P "$base_profile" "$url" + + echo "$url" >>"$done_urls" + done <"%NEORG_INPUTS_STORAGE_FILE" + + # Wait for the Firefox process from above to finish. + wait + + tmp="$(mktmp)" + # source: https://stackoverflow.com/a/24324455 + awk 'NR==FNR {a[$0]=1; next} !a[$0]' "$done_urls" "%NEORG_INPUTS_STORAGE_FILE" >"$tmp" + + mv "$tmp" "%NEORG_INPUTS_STORAGE_FILE" +} |