summaryrefslogtreecommitdiff
path: root/.local/bin/uni
blob: 66b9950ae0bf961f25921f6a751002d3252fc7ad (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
35
36
#!/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

func read_runes {
	cut -d';' -f1 $DATA | read -gd\n runes
}

async read_runes
set i `cut -d';' -f2 $DATA | osel -i
wait
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
}