exec run-standalone.sh /usr/sbin/dbus-scripts --debug --session > \ /tmp/dbus-debug
#:power saving on /home/user/bin/power_saving_on.sh * * \ org.freedesktop.Telepathy.Channel Closed #:power saving off /home/user/bin/power_saving_off.sh * * \ org.freedesktop.Telepathy.Connection.Interface.Requests CreateChannel
#!/bin/sh # power saving off iwconfig wlan0 power off # send notification dbus-send --type=method_call --dest=org.freedesktop.Notifications \ /org/freedesktop/Notifications \ org.freedesktop.Notifications.SystemNoteInfoprint string:"Power \ Saving Off"
#!/bin/sh # power saving on iwconfig wlan0 power on # send notification dbus-send --type=method_call --dest=org.freedesktop.Notifications \ /org/freedesktop/Notifications \ org.freedesktop.Notifications.SystemNoteInfoprint string:"Power \ Saving On"