From 4d0bd914e7c1ee65f4036e60149a7b891906a5d3 Mon Sep 17 00:00:00 2001 From: George Abbott Date: Tue, 31 Oct 2023 17:54:07 +0000 Subject: Commit all to date. --- sys/add-coast | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100755 sys/add-coast (limited to 'sys/add-coast') diff --git a/sys/add-coast b/sys/add-coast new file mode 100755 index 0000000..ebd1df9 --- /dev/null +++ b/sys/add-coast @@ -0,0 +1,40 @@ +#!/bin/sh +# Adds a bookmark. +# Either grabs xclip, or requests input of the string to bookmark. +# If passed --ask (-a), then ignore the clipboard and prompt the user what to +# bookmark. + +coast="$(xclip -o -selection primary)" +alias bmnotify-send="notify-send -i $HOME/.local/share/img/bm-icon.png" +commonargs="-i $HOME/.local/share/img/bm-icon.png" + +if isflag '-a' "$@" ; then + coast="$(dmenu -p "Enter coast entry: " < /dev/null)" +fi + +# Exit if entry is not present. +[ -z "$coast" ] && bmnotify-send "Did not add coast." "Nothing selected to add!" && exit + +# Request comment. +comment="$(dmenu -p "Add comment ($coast): " < /dev/null)" + +# Exit if the comment is blank. +[ -z "$comment" ] && exit + +# Find the file which holds coast entries, and process it. +if [ "$ORGD_KT_PATH" = "" ]; then + notify-send "ORGD_KT_PATH empty." "Using $HOME/docs/wr/orgd/kt as fallback." + file="$HOME/docs/wr/orgd/kt/coast" +else + file="$ORGD_KT_PATH/coast" +fi +stripped="$(strip-comments "$file")" + +# Add the entry, unless its already added. +if echo "$stripped" | grep -q "^$coast[/ \t]*$"; then + bmnotify-send "No!" "$coast already added!" +else + echo "$coast # $comment" >> "$file" + bmnotify-send "Entry Added!" "$coast added and tagged as $comment." $commonargs +fi + -- cgit v1.2.1