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/get-coast | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 sys/get-coast (limited to 'sys/get-coast') diff --git a/sys/get-coast b/sys/get-coast new file mode 100755 index 0000000..d04364c --- /dev/null +++ b/sys/get-coast @@ -0,0 +1,14 @@ +#!/bin/sh +# get-coast: get a "check-out-at-some-time" entry. +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 + +# This regex matches though it is hard to +# read. +# I wonder if it might be worth cutting on a different character than space? +# If a space is present in the bookmark then it will bug out. +xdotool type --delay 2 "$(grep -v '^#\|^[ \r\n]*$' $file | dmenu -i -l 50 | cut -d' ' -f1)" -- cgit v1.2.1