-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove mouse pointer #11
Comments
The cursor (gray circle) inside TouchKio is rendered directly by electron when However, labwc support to globally hide the cursor on touch devices by default (see labwc/labwc#2273) is coming with release v0.8.2. |
Nice, can't wait to see if this new version will allow the pointer to be hidden. |
I built the v0.8.2 version locally and can confirm the pointer (or actually the 'circle') is gone after the first touch event. |
Love your work. |
Don't want to push but is there an ETA on this? Just discovered this project and am using for a picture frame. Everything works great except for the mouse pointer thing. Thanks for the project! |
It's all depending of the "adoption" of the labwc v0.8.2 version in the official RaspOS release, for an ETA you better ask that question in the official Raspberry PI forum https://forums.raspberrypi.com/ When you are in a hurry you can always build this version yourself. See https://github.com/labwc/labwc/wiki#debian |
Got it! Thanks for the info! |
Is there a way to remove the mouse pointer that appears as a circle?
You can remove the system one with the below trick but this does not remove the pointer from the electron app.
sudo mv /usr/share/icons/PiXflat/cursors/left_ptr /usr/share/icons/PiXflat/cursors/left_ptr.bak
Restart Wayfire to see the Change. The Mousecursor is gone.
It simply renames the Cursor-Graphic and it becomes invisible if the System can't find it.
To enable it again:
sudo mv /usr/share/icons/PiXflat/cursors/left_ptr.bak /usr/share/icons/PiXflat/cursors/left_ptr
Restart Wayfire to see it again.
The text was updated successfully, but these errors were encountered: