Ну, не нашли видимо потому как у вас используется libinput (у которого этого параметра просто нет), а не evdev (как в примерах, которые смотрели по ссылкам). У libinput есть "Accel Speed", но боюсь это опять же то самое ускорение. Надо бы попробовать таки сделать файлик как в примерах для глобальной настройки и если не заработает, назначить мыше драйвер evdev. Я тут помочь не могу, сие требует натурных экспериментов, а у меня нет для этого восьмёрки.
stranger573, благодарю, за подсказку "libinput". глянул в /etc/X11/xorg.conf.d есть файл 40-libinput.conf с таким содержимым
# Match on all types of devices but tablet devices and joysticks
Section "InputClass"
Identifier "libinput pointer catchall"
MatchIsPointer "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
EndSection
Section "InputClass"
Identifier "libinput keyboard catchall"
MatchIsKeyboard "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
EndSection
Section "InputClass"
Identifier "libinput touchpad catchall"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
EndSection
Section "InputClass"
Identifier "libinput touchscreen catchall"
MatchIsTouchscreen "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
EndSection
Section "InputClass"
Identifier "libinput tablet catchall"
MatchIsTablet "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
EndSection
В нем применяется драйвер libinput, для разных устройств..
Ответ для себя нашел в статье
Mouse acceleration - ArchWiki в самом конце статьи, есть пример консольной команды
xinput --set-prop 8 'libinput Accel Speed' -0.5
попробовал с разными значениями, как там упоминается от -1 до 1. все прекрасно работает...!

А чуть выше.. есть пример файла с настройками мыши, при запуске х-сервера.
Disabling mouse acceleration
бла-бла...
/etc/X11/xorg.conf.d/50-mouse-acceleration.conf
Section "InputClass"
Identifier "My Mouse"
MatchIsPointer "yes"
Option "AccelerationProfile" "-1"
Option "AccelerationScheme" "none"
Option "AccelSpeed" "-1"
EndSection
Создал свой файл /etc/X11/xorg.conf.d/50-mouse-acceleration.conf
Изменив в нем, только одну строку
Identifier "My Mouse"
на свою,- со своим названием мыши
Identifier "Avago USB LaserStream(TM) Mouse"
И мышь теперь, с приемлемой для меня скоростью перемещается по экрану..!
Всем, спасибо..!!!:-)