diff --git a/common-tasks/dispvm.md b/common-tasks/dispvm.md
index 1f5af78c..3914eba3 100644
--- a/common-tasks/dispvm.md
+++ b/common-tasks/dispvm.md
@@ -45,8 +45,7 @@ Use the `qvm-open-in-dvm` command line (from your AppVM), e.g.:
[user@work-pub ~]$ qvm-open-in-dvm Downloads/apple-sandbox.pdf
~~~
-The qvm-open-in-dvm will not exit until you close the application in the Disposable VM.
-
+The qvm-open-in-dvm will not exit until you close the application in the Disposable V
Starting an arbitrary application in a disposable VM via command line (from Dom0)
---------------------------------------------------------------------------------
@@ -81,3 +80,31 @@ Disposable VMs and Local Forensics
----------------------------------
At this time, DispVMs should not be relied upon to circumvent local forensics, as they do not run entirely in RAM. For details, see [this thread](https://groups.google.com/d/topic/qubes-devel/QwL5PjqPs-4/discussion).
+
+Adding arbitrary programs to Disposable VM Application Menu
+-----------------------------------------------------------
+
+For added convenience, arbitrary programs can be added to the Application Menu of the Disposable VM. In order to do that `arbitrary.desktop` file has to be created in `/usr/share/applications` that file will point to the desired program. Use following template when creating a .desktop file:
+
+`[Desktop Entry]`
+`Version=1.0`
+`Type=Application`
+`Exec=sh -c 'echo arbitrary | /usr/lib/qubes/qfile-daemon-dvm qubes.VMShell dom0 DEFAULT red'`
+`Icon=dispvm-red`
+`Terminal=false`
+`Name=DispVM: Arbitrary Name`
+`GenericName=DispVM: Arbitrary Generic Name`
+`StartupNotify=false`
+`Categories=Network;X-Qubes-VM;`
+
+Next, the /etc/xdg/menus/applications-merged/qubes-dispvm.menu file has to be modified so that it points to our newly-created .desktop file.
+
+Add `arbitrary.desktop` line to the `` block. The modified file should look like this:
+
+``
+`qubes-dispvm-firefox.desktop`
+`qubes-dispvm-xterm.desktop`
+`arbitrary.desktop`
+``
+
+After saving the changes our program should appear under the Disposable VM Applications menu.