Let's Noteのタッチパッドの回転スクロールがログアウトすると無効になってしまうのを改善した。

先日*1、Let's Noteのタッチパッドの回転スクロールを
gpointing-device-settingsを使って有効にしたが、
この方法だとログアウトするごとに回転スクロールが無効になってしまい、とても不便だった。
バグなのかな(´・ω・`)。

そこで、gpointing-device-settingsを使用せずに回転スクロールを有効にすることにした( 参考*2 )。
/usr/share/X11/xorg.conf.d/50-synaptics.conf
を見ると

# Example xorg.conf.d snippet that assigns the touchpad driver
# to all touchpads. See xorg.conf.d(5) for more information on
# InputClass.
# DO NOT EDIT THIS FILE, your distribution will likely overwrite
# it when updating. Copy (and rename) this file into
# /etc/X11/xorg.conf.d first.
# Additional options may be added in the form of
# Option "OptionName" "value"
#
...(略
と書いてあるので、素直に/etc/X11/xorg.conf.d/50-synaptics.confにコピー

コピー後に内容を

Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Option "CircularScrolling" "1"
Option "CircularScrollTrigger" "0"
EndSection
と書き換えると、gpinting-device-settingsを使用せずに回転スクロールを有効にすることができた。
今度はログアウトしても有効なままなので快適です。