aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
blob: 9d739ba833f595e2c6193895f79015c6f7831f11 (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 was pulled from Unicode cldr data and then manually cleaned up.