aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorRose Hogenson <rosehogenson@posteo.net>2025-01-25 19:50:39 -0800
committerRose Hogenson <rosehogenson@posteo.net>2025-01-25 19:50:39 -0800
commit503237c03681487afa632b833266d97fe7f0f3e7 (patch)
treee432609a79d8ea77e2af1e7ffa2686c3d5f6ed7b /README.md
parent1b4f73d38b0519956c5662472274a3a02b86d522 (diff)
downloademoji-503237c03681487afa632b833266d97fe7f0f3e7.tar.zst
Only include the raw emoji list.
Diffstat (limited to 'README.md')
-rw-r--r--README.md27
1 files changed, 27 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..9d739ba
--- /dev/null
+++ b/README.md
@@ -0,0 +1,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.