TrackPointの設定

サスペンド後に速度と軽さの設定が消えてしまうのに対処。
/etc/pm/sleep.d/00trackpoint-setting

#!/bin/sh

case "$1" in
    hibernate|suspend)
        ;;
    thaw|resume)
        echo -n 150 > /sys/devices/platform/i8042/serio1/speed
        echo -n 200 > /sys/devices/platform/i8042/serio1/sensitivity
        ;;
    *)
        ;;
esac

サスペンドスクリプト解説は
http://en.opensuse.org/Pm-utils
が分かりやすかったです、UbuntuじゃなくてSUSEだけど。