blob: c780739e8e9f96993c9858cacd335ac853731a7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
* pickme : a simple emoji picker
** synopsis
you type in a string and it lists the emojis whose names contain that
string.
** building
#+BEGIN_SRC sh
make
#+END_SRC
** installation
#+BEGIN_SRC sh
( d=$( [-n $XDG_DATA_HOME ] && echo $XDG_DATA_HOME || "~/.local/share" ) ; mkdir -p $d/pickme ; mv UnicodeData.txt $d/pickme )
# Put the `pickme' binary in your favourite place to put binaries.
#+END_SRC
|