mow9902 wrote: Mon Aug 22, 2022 11:08 pm
I realize I can change mouse sensitivity using the standard menu options ie Setup Mouse/keyboard, but the changes only apply for the current session.
You are probably talking about the "Input Wizard". The program tells you the settings are for this session only. This is not exactly true. They are stored in the /root/.xset.sh file and loaded when the X server starts. However, the "Input Wizard" in Fossapup64 has a problem and needs to be fixed.
If you want to fix the wizard, run this command in the terminal:
Code: Select all
sed -i 's/LANG=C dc ${MOUSEACCEL} 10 \\\* p/LANG=C dc -e "${MOUSEACCEL} 10 * 1 \/ p"/' /usr/sbin/input-wizard
Or edit the /root/.xset.sh file in a text editor. It should contain the xset m
command. If not, add one:
where 50/10 = 5 -- Acceleration; 4 -- Threshold
@dimkr
There is a little problem with the input-wizard It has been fixed with this commit only partially. It calls dc one more time:
Code: Select all
203c203
< MOUSEACCX10=`LANG=C dc ${MOUSEACCEL} 10 \* p` #130209
---
> MOUSEACCX10=`LANG=C dc -e "${MOUSEACCEL} 10 * 1 / p"` #130209
Note: 1/
is added to get rid of trailing .0
This is needed because xset
expects an integer:
Code: Select all
root# xset m 20.0/10 4
root# xset q
...
acceleration: 20/1 threshold: 4
...
root# xset m 20/10 4
root# xset q
...
acceleration: 20/10 threshold: 4
...