Felizmente luego de indagar mucho encontré el código correcto para cambiar la velocidad del bendito mouse osea el scroll en el nuevo Ubuntu 22.04
No saben que dolor de cabeza se ha realizado este cambio en Ubuntu, especialmente porque ésto está habilitado en tablets, pero en Ubuntu de escritorio no existe.
Lo primero que debemos de hacer es abrir la consola, e ingresa tu código:
sudo nano mousewheel.sh
Luego copia y pega todo este contenido en la consola
#!/bin/bash
# Version 0.1 Tuesday, 07 May 2013
# Comments and complaints http://www.nicknorton.net
# GUI for mouse wheel speed using imwheel in Gnome
# imwheel needs to be installed for this script to work
# sudo apt-get install imwheel
# Pretty much hard wired to only use a mouse with
# left, right and wheel in the middle.
# If you have a mouse with complications or special needs,
# use the command xev to find what your wheel does.
#
### see if imwheel config exists, if not create it ###
if [ ! -f ~/.imwheelrc ]
then
cat >~/.imwheelrc<<EOF
".*"
None, Up, Button4, 1
None, Down, Button5, 1
Control_L, Up, Control_L|Button4
Control_L, Down, Control_L|Button5
Shift_L, Up, Shift_L|Button4
Shift_L, Down, Shift_L|Button5
EOF
fi
##########################################################
CURRENT_VALUE=$(awk -F 'Button4,' '{print $2}' ~/.imwheelrc)
NEW_VALUE=$(zenity --scale --window-icon=info --ok-label=Apply --title="Wheelies" --text "Mouse wheel speed:" --min-value=1 --max-value=100 --value="$CURRENT_VALUE" --step 1)
if [ "$NEW_VALUE" == "" ];
then exit 0
fi
sed -i "s/\($TARGET_KEY *Button4, *\).*/\1$NEW_VALUE/" ~/.imwheelrc # find the string Button4, and write new value.
sed -i "s/\($TARGET_KEY *Button5, *\).*/\1$NEW_VALUE/" ~/.imwheelrc # find the string Button5, and write new value.
cat ~/.imwheelrc
imwheel -kill
Guarda el archivo, luego debemos cambiar los permisos al script
Lo hacemos con
chmod +x mousewheel.sh
Y luego abre el script con
./mousewheel.sh
Se deberá abrir un pequeño cuadro que permite cambiar la velocidad
Mientras más alto, el scrool será más veloz. Menor, bajará pocas líneas.
Espero haber ayudado en el tema de la velocidad del mouse en ubuntu 22.04
Nota: El código tomado de la web https://dev.to/ que lo tenía para Ubuntu 20.04.
Cualquier ayuda lo puedes realizar en contacto