#!/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 $char." xdotool type --delay 0 "$char"