summaryrefslogtreecommitdiff
path: root/.local/bin/dmenu/unicode-select
blob: f42cd6ec1c1d382f2a8cea92f9a7f19da605ef2f (plain)
1
2
3
4
5
6
7
8
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/src/unicode_list | tr -d [:print:] | 
		xclip -r -selection "clipboard" && 
		notify-send "$(xclip -selection "clipboard" -o) copied to clipboard"