#!/bin/sh
# simple wrapper to make using dbus-send a little easier
# Stew Benedict <sbenedict@mandrakesoft.com>

if [ -n "$1" ]; then
  dbus-send --type=method_call --dest=com.mandriva.Message.EchoService /com/mandriva/Message com.mandriva.Message.Echo string:"$*"
else
  echo "Usage: $0 <message>"
fi
