最終更新:2019-12-15 (日) 04:26:53 (1592d)  

tokkyo/設定/CF-SZ5
Top / tokkyo / 設定 / CF-SZ5

カーソルの速度

  • 大きいほど遅い
    xinput --set-prop "SynPS/2 Synaptics TouchPad" "Device Accel Constant Deceleration" 8

設定保存

  • Linux/usr/share/X11/xorg.conf.d
    Section "InputClass"
    	Identifier      "touchpad catchall"
    	Driver          "synaptics"
    	MatchIsTouchpad "on"
    	MatchDevicePath "/dev/input/event*"
    
    	#ホイールパッドの回転スクロール
    	Option          "CircularScrolling"     "1"
    	Option          "CircularScrollTrigger" "0"
    
    	#カーソルの速度
    	Option		"ConstantDeceleration" "10.0"
    EndSection