Revert "Makefile: set architecture to build to armel"
[dbuscron] / dbuscron.py
1 #!/usr/bin/python
2 #
3 # bus type sender interface path member destination args command
4 #
5 # Examples for N900:
6 #
7 # Headphones unplugged:
8 # S signal * org.freedesktop.Hal.Device /org/freedesktop/Hal/devices/platform_headphone Condition * ButtonPressed;connection echo Headphones state changed: $(cat /sys/devices/platform/gpio-switch/headphone/state)
9 #
10 # Call recieved:
11 # S signal * com.nokia.csd.Call /com/nokia/csd/call Coming * * echo $DBUS_ARG1 is calling
12 #
13
14 from dbuscron.shell import main
15 main.run()
16
17 # vim: ts=8 sts=4 sw=4 et
18