#!/bin/bash
if test -x /usr/bin/update-menus; then
  if test -x /usr/bin/X11/9menu; then
    /etc/X11/wm2/system.wm2rc --menu /Debian &
  else
    echo "9menu package not installed, cannot create menus without it"
  fi
else
 echo "menu package not installed, cannot create menus without it"
fi