Mercurial > pidgin.yaz
view libpurple/purple-send-async @ 20405:2f123c4b36a2
propagate from branch 'im.pidgin.pidgin' (head 5e61fe349507736c585798abea83ef3d8383d8b4)
to branch 'im.pidgin.cpw.khc.msnp14' (head 6c517a3c81b05795b3029a1e36d7683dba59ab41)
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Sun, 15 Apr 2007 05:42:29 +0000 |
parents | c6e563dfaa7a |
children | 598b1b15b199 |
line wrap: on
line source
#!/bin/bash METHOD_NAME=$1 if test -z "$METHOD_NAME" then cat <<EOF This program calls gaim API functions using DBus. As opposed to gaim-send, it does not print the return value. Usage: $0 method-name type1:parameter1 type2:parameter2 ... This shell script just invokes dbus-send, see man dbus-send for how to specify the parameters. Examples: $0 GaimCoreQuit Use dbus-viewer to get the list of supported functions and their parameters. EOF exit 1 fi shift dbus-send --dest=net.sf.gaim.GaimService --type=method_call /net/sf/gaim/GaimObject net.sf.gaim.GaimInterface.$METHOD_NAME "$@" echo