aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
blob: 80258c289c6f9650a86ad76a95eb1c4a922e415e (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
# emoji list

A basic list of emojis and their annotations. Useful for building emoji pickers.

## Examples

Here's a minimal emoji picker using dmenu:

```
dmenu -i -l20 <emoji_list | cut -d' ' -f1 | tr -d '\n' | xclip -selection clipboard
```

Or the equivalent for wayland:

```
bemenu -i -l20 <emoji_list | cut -d' ' -f1 | tr -d '\n' | wl-copy
```

Or using fzf inside tmux:

```
fzf <emoji_list | cut -d' ' -f1 | tr -d '\n' | tmux load-buffer -w -
```

## Data source

Data is pulled from unicode.org using the [generate.go](generate/generate.go) script.