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

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

[ -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