From 9e82c96713989a7565eadac505b36e3dbe91cd5a Mon Sep 17 00:00:00 2001 From: Sam Chudnick Date: Sun, 11 Jun 2023 07:56:17 -0400 Subject: Added, removed, renamed scripts --- .local/bin/unicode-select | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 .local/bin/unicode-select (limited to '.local/bin/unicode-select') diff --git a/.local/bin/unicode-select b/.local/bin/unicode-select new file mode 100755 index 0000000..b797691 --- /dev/null +++ b/.local/bin/unicode-select @@ -0,0 +1,9 @@ +#!/bin/sh +# Select unicode character via dmenu and copy to clipboard + +line="$(cat ~/.local/share/unicode_list | dmenu -i -l 10)" +grep "$line" ~/.local/share/unicode_list | tr -d [:print:] | + xclip -r -selection "clipboard" && + notify-send "$(xclip -selection "clipboard" -o) copied to clipboard" + + -- cgit v1.2.3