summaryrefslogtreecommitdiff
path: root/.local/bin/uni
blob: a882c8ce10850eb3d55c468d5f61dea6494f8804 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/usr/local/bin/andy

set -e NOTIFY_LONG  unicode
set -e NOTIFY_SHORT `basename $args[0]

func setup {
	curl 'https://www.unicode.org/Public/UNIDATA/UnicodeData.txt'
	| sed -E '
		s/;[^;]*//2g
		s/\<(.)([A-Z]*)/\1\L\2/2g
		/^[^;]*;</d
		/Compatibility/d
		/Variation Selector/d
		s/[^;]*/\\u&/
		s/^\\u([^;]{5})/\\U000\1/
	' >$DATA
}

set DATA $(XDG_DATA_HOME:$HOME/.local/share)/unicode-data
test -f $DATA || setup

set i `{
	tee >{cut -d';' -f1 | read -d\n runes} <$DATA
	| cut -d';' -f2 $DATA
	| osel -i
}
set rune `printf $runes[$i]

if test -t 2 {
	wl-copy -n $rune
	| notify 'Rune Copied' "The rune ‘$rune’ was copied to the clipboard"
} else {
	wtype -- $rune
}