Sunday, May 4, 2008

Thinkpad T61 Hotkeys for OpenSuse 10.3

To get the hotkeys working for the T61 under OpenSuse 10.3 I added to /usr/lib/hotkey-setup/thinkpad_hotkey_handler for switching on off the toupad:
4104) HOTKEY="Fn+F8"
/usr/bin/synclient TouchpadOff=$[! `/usr/bin/synclient -l|grep TouchpadOff|/usr/bin/awk '{print $3}'`]
ACTION="toggle touchpad"
;;

for changing the screen brighness:
4112) HOTKEY="Fn+Home"
ACTION="brighter display"
echo up > /proc/acpi/ibm/brightness
;;
4113) HOTKEY="Fn+End"
ACTION="darker display"
echo down > /proc/acpi/ibm/brightness
;;

and to suspend when closing the lid:
20481) HOTKEY="close lid"
ACTION="suspend"
powersave -u
;;

0 comments: