N900 Mission Control: Difference between revisions
From Maemo Wiki
Jump to navigationJump to search
imported>magick777 |
imported>magick777 |
||
| Line 10: | Line 10: | ||
== Example scripts == | == Example scripts == | ||
=== Set | === Set SIP accounts online or offline === | ||
==== /usr/bin/siponline ==== | ==== /usr/bin/siponline ==== | ||
<source lang="bash"> | |||
#!/bin/sh | #!/bin/sh | ||
mc-tool list | grep "sofiasip" | awk {'print "mc-tool request "$1" online"'} | sh | mc-tool list | grep "sofiasip" | awk {'print "mc-tool request "$1" online"'} | sh | ||
</source> | |||
==== /usr/bin/sipoffline ==== | |||
=== Set all SIP accounts to offline === | === Set all SIP accounts to offline === | ||
Revision as of 15:16, 27 July 2010
N900 Mission Control
This page aims to document the Mission Control interface on the Nokia N900, as several things have changed since earlier versions of Maemo and previous instructions for e.g. setting presence no longer work as expected.
It is actively a work in progress as of late July / early August 2010.
Accessing osso-mission-control
mc-tool
dbus
Example scripts
Set SIP accounts online or offline
/usr/bin/siponline
<source lang="bash">
- !/bin/sh
mc-tool list | grep "sofiasip" | awk {'print "mc-tool request "$1" online"'} | sh </source>