View Single Post
Posts: 229 | Thanked: 36 times | Joined on Jan 2010 @ Bulgaria
#153
Originally Posted by bumby View Post
Of course, everythings possible with this lovely device
First you need to install dbus-scripts. Then you'll have to create two files

In "/etc/dbus-scripts.d/somethingsomething":
Code:
/path/to/script :1.11 * org.freedesktop.Hal.Manager * /org/freedesktop/Hal/devices/computer_logicaldev_input_1

In "/path/to/script":
Code:
#!/bin/bash
ACTION="$4"

case $ACTION in
	DeviceAdded)
		switchprofile "Headphones"
	;;
	DeviceRemoved)
		switchprofile "General"
	;;
esac
And to try it out, either restart dbus-scripts (sudo /etc/init.d/dbus-scripts restart) or start a new instance width /usr/sbin/dbus-scripts --system --debug.

running dbus-script in debug mode is very helpful when you want to catch events such as headphones in/out.

What about make this with a Bluetooth hendset connection?
Do you think it will be possible to do and add this in one of the next versions of Tweakr?

Regards.