|
|
2010-04-30
, 11:43
|
|
|
Posts: 700 |
Thanked: 846 times |
Joined on Nov 2009
|
#2
|
Hi,
Does anyone knows if there are any widget application which changes VoIP/IM availability status ?
If not, here's an idea with two different functionality.
Option 1
Widget desktop application which changes your VoIP/IM availability status either online or offline.
Application examples
* bluezwitch
*Simple FMTX desktop widget
Option 2
Widget desktop application which changes your VoIP/IM availability status either to wanted status or offline. Desktop can have as many variantion from same widget but only one is active.
Application example
* ConnectNow internet connection switch
BR
.JHS

|
|
2010-04-30
, 12:40
|
|
|
Posts: 700 |
Thanked: 846 times |
Joined on Nov 2009
|
#3
|
command should look like something like this:
well, not exactly... last three variables suppose to be in one variant struct {uint32:1 string:"offline" string:"newStatus"}Code:run-standalone.sh dbus-send --print-reply --type=method_call --dest=org.freedesktop.Telepathy.AccountManager /org/freedesktop/Telepathy/Account/gabble/jabber/YOURACCOUNT_40gmail_2ecom0 org.freedesktop.DBus.Properties.Set string:"org.freedesktop.Telepathy.Account" string:"RequestedPresence" uint32:1 string:"offline" string:"newStatus"
And I have no idea how to put them there for dbus-send.
We are looking for:
by dbus-monitor.Code:dest=org.freedesktop.Telepathy.AccountManager serial=4835 path=/org/freedesktop/Telepathy/Account/gabble/jabber/YOURACCOUNT_40gmail_2ecom0; interface=org.freedesktop.DBus.Properties; member=Set string "org.freedesktop.Telepathy.Account" string "RequestedPresence" variant struct { uint32 1 string "offline" string "@Home" }
You could get a list of all accounts with the following and then iterate over them:
Code:/usr/bin/dbus-send --type=method_call --print-reply --dest=org.freedesktop.Telepathy.AccountManager /org/freedesktop/Telepathy/AccountManager org.freedesktop.DBus.Properties.Get string:org.freedesktop.Telepathy.AccountManager string:ValidAccounts
Does anyone knows if there are any widget application which changes VoIP/IM availability status ?
If not, here's an idea with two different functionality.
Option 1
Widget desktop application which changes your VoIP/IM availability status either online or offline.
Application examples
* bluezwitch
*Simple FMTX desktop widget
Option 2
Widget desktop application which changes your VoIP/IM availability status either to wanted status or offline. Desktop can have as many variantion from same widget but only one is active.
Application example
* ConnectNow internet connection switch
BR
.JHS