summaryrefslogtreecommitdiff
path: root/sys/insert-char
diff options
context:
space:
mode:
authorGeorge Abbott <george@gabbott.dev>2023-10-31 17:54:07 +0000
committerGeorge Abbott <george@gabbott.dev>2023-10-31 17:54:07 +0000
commit4d0bd914e7c1ee65f4036e60149a7b891906a5d3 (patch)
treec2a6751823e064e003cd4f6166df07bfc106d7eb /sys/insert-char
Commit all to date.
Diffstat (limited to 'sys/insert-char')
-rwxr-xr-xsys/insert-char16
1 files changed, 16 insertions, 0 deletions
diff --git a/sys/insert-char b/sys/insert-char
new file mode 100755
index 0000000..20ea288
--- /dev/null
+++ b/sys/insert-char
@@ -0,0 +1,16 @@
+#!/bin/sh
+
+# A simple dmenu script that grabs from a file, and inserts that character.
+# File is located at: $ORGD_DATA_PATH, or $HOME/docs/wr/orgd/dt/chars.
+
+if [ "$ORGD_DT_PATH" = "" ]; then
+ notify-send "ORGD_DT_PATH empty." "Using $HOME/docs/wr/orgd/dt as fallback."
+ file="$HOME/docs/wr/orgd/dt/chars"
+else
+ file="$ORGD_DT_PATH/chars"
+fi
+
+char="$(grep -v '^#\|^[ \r\n]*$' $file | dmenu -l 25 | cut -d' ' -f1)"
+notify-send "Inserted Character" "Inserted <i>$char</i>."
+xdotool type --delay 0 "$char"
+