summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaura Aino Violetta Aléanor <lav@vampires.gay>2023-05-07 20:02:11 +0200
committerLaura Aino Violetta Aléanor <lav@vampires.gay>2023-05-07 20:02:11 +0200
commit26368e374a0e6e5d485d93547310c3e6238036e8 (patch)
tree550ecb42c5e23ec359f789d0124be5e3b23337e0
parentc9c7476a205bc7b30f6d7f218a1d794127f1bf2f (diff)
downloadpickme-26368e374a0e6e5d485d93547310c3e6238036e8.tar.gz
pickme-26368e374a0e6e5d485d93547310c3e6238036e8.zip
add README
-rw-r--r--README19
1 files changed, 19 insertions, 0 deletions
diff --git a/README b/README
new file mode 100644
index 0000000..c780739
--- /dev/null
+++ b/README
@@ -0,0 +1,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