После установки CentOS 7 + KDE скорость перемещения курсора показалась слишком маленькой.
Изменить параметры мышки можно с помощью утилиты xinput
.
Находим устройсва:
# xinput list ⎡ Virtual core pointer id=2 [master pointer (3)] ⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)] ⎜ ↳ ImExPS/2 Generic Explorer Mouse id=10 [slave pointer (2)] ⎣ Virtual core keyboard id=3 [master keyboard (2)] ↳ Virtual core XTEST keyboard id=5 [slave keyboard (3)] ↳ Power Button id=6 [slave keyboard (3)] ↳ Sleep Button id=7 [slave keyboard (3)] ↳ Video Bus id=8 [slave keyboard (3)] ↳ AT Translated Set 2 keyboard id=9 [slave keyboard (3)]
Мышка идет под ID 10:
...ImExPS/2 Generic Explorer Mouse id=10 ...
Находим ее параметры:
# xinput list-props 10 Device 'ImExPS/2 Generic Explorer Mouse': Device Enabled (114): 1 Coordinate Transformation Matrix (116): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000 Device Accel Profile (242): 0 Device Accel Constant Deceleration (243): 1.000000 Device Accel Adaptive Deceleration (244): 1.000000 Device Accel Velocity Scaling (245): 10.000000 Device Product ID (234): 2, 6 Device Node (235): "/dev/input/event3" ...
И устанавливаем скорость, изменив параметр Accel Constant Deceleration (243):
# xinput set-prop 10 243 0.7
Изменения применяются сразу – так что можно настроить под себя без всяких проблем.
Готово.