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.
/path/to/script :1.11 * org.freedesktop.Hal.Manager * /org/freedesktop/Hal/devices/computer_logicaldev_input_1
#!/bin/bash ACTION="$4" case $ACTION in DeviceAdded) switchprofile "Headphones" ;; DeviceRemoved) switchprofile "General" ;; esac