On Thu, 1 Feb 2024, Ramiro Aceves wrote:
I am not using any xorg.conf file. Ithink I will have to generate w new one with: # X -configure And place in /etc/X11/xorg.conf then add the option Option "SWcursor" "on"
You don't need the whole thing; just a fragment like this will do:
```
$ cat /etc/X11/xorg.conf.d/modesetting.conf
Section "Device"
Identifier "Card0"
Driver "modesetting"
Option "SWcursor" "on"
EndSection
$
```
-RVP