diff --git a/icon-themes/README b/icon-themes/README
index c25279120076..90887157614e 100644
--- a/icon-themes/README
+++ b/icon-themes/README
@@ -62,3 +62,31 @@ How to add a new image set:
vcl/source/app/settings.cxx
- The fallback for particular icons is defined in CUSTOM_PREFERRED_FALLBACK_1
+
+
+How to add a new icon for a new command:
+----------------------------------------
+
+- Assume you defined a dispatch command in officecfg like the following:
+
+ in officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu
+
+
+
+ ~Open...
+
+
+ 1
+
+
+
+ Here, you need to define a property named "Properties", with its value set
+ to 1. (TODO: Check if this step is still necessary.)
+
+- Now, you need to add 2 new icon images under icon-themes/galaxy/cmd/, one
+ for the large size and one for the smaller size. The name of each image
+ must be lc_.png and sc_.png. Here, the command
+ name is the name given in the above .xcu file without the ".uno:" prefix and
+ all its letters lower-cased. In this example, the file names will be
+ lc_openfromcalc.png and sc_openfromcalc.png. Note that you need to add new
+ images to the galaxy theme for them to show up in any themes at all.