emocli provides a command-line interface for searching emoji characters.
It uses combined data from Mange/emoji-data and carloscuesta/gitmoji.
```text
Usage: emocli [OPTIONS]
OPTIONS: -h | --help print this help -l | --list list all emoji characters -i | --info include info -n | --name match name exactly ```
emocli -li
```bash emocli -i dog
🐶 dog face | Animals & Nature / animal-mammal | dog,face,pet 🐕 dog | Animals & Nature / animal-mammal | dog,pet 🦮 guide dog | Animals & Nature / animal-mammal | accessibility,blind,guide,guide dog 🐕🦺 service dog | Animals & Nature / animal-mammal | accessibility,assistance,dog,service 🐩 poodle | Animals & Nature / animal-mammal | dog,poodle 🌭 hot dog | Food & Drink / food-prepared | frankfurter,hot dog,hotdog,sausage ```
if the name is more than one word, it should be enclosed in quotes
```bash emocli -n 'guide dog'
🦮 ```
git commit -m "$(emocli -n rocket) production launch"
rofi is a window switcher, application launcher, and dmenu replacement. Here, it is being used as a dmenu replacement to provide a graphical interface for search and select.
xclip is a command line utility that provides an interface to the X11 clipboard. Here, it is being used to copy its standard input into the clipboard.
```bash
emocli -li | rofi -dmenu -window-title emoji | cut -d' ' -f1 | tr -d '\n' | xclip -selection clipboard ```
Your mileage may vary on terminal support for displaying emoji consisting of 2 or more characters joined by a zero-width joiner character (U+200D). The "service dog" emoji (🐕🦺) is one such example. Even with a proper font config, it will appear on many terminals as a dog next to a safety vest (🐕🦺).
Currently, the best configuration tested with emocli -li
is the kitty terminal with the Noto Color Emoji font installed and configured in your fontconfig.
This software is released under the MIT License. See LICENSE
for details.
This software includes source files from third party components, Gitmoji and Unicode CLDR. Each of these components have their own license. See data/gitmojis/gitmojis-license.txt
and data/emojis/unicode-license.txt
.