summaryrefslogtreecommitdiff
path: root/.local/bin/desktop/dmenu-unicode
blob: 16e1cfc09178d4b8da1bb3c8e784237fd91a8e0b (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

chosen=$(cat ~/.local/share/chars/* | dmenu -i -l 25 -fn :size=20)

[ -z "$chosen" ] && exit

if [ -n "$1" ]; then
	printf "%s" "${chosen#* }" | cut -d\; -f1 | tr -d '\n' | xclip -selection clipboard
else
	printf "%s" "${chosen%% *}" | xclip -selection clipboard
fi