Hide The Mouse Pointer on The ED-HMI Series Desktop System
1 Overview
Introduce the background and scope of hiding the mouse pointer on the ED-HMI series Desktop system.
1.1 Background
Some users operating on the ED-HMI series Desktop system wish to hide the mouse pointer to meet application requirements in different scenarios. In response to this demand, our company has developed a script to hide the mouse pointer, allowing users to hide the mouse pointer in appropriate scenarios.
1.2 Applicability
This application is applicable to all ED-HMI series products.
2 Configuration Guide
In Linux operating systems, the protocols and window architectures serving the graphical interface can be categorized into three types:
- Wayfire : A window manager developed based on WLROOTS, which provides low-level functionality for communicating with the Wayland display server. Wayfire builds upon this to offer a highly customizable window management environment and is part of the Wayland ecosystem.
- X11: The X Window System, a windowing system that not only defines the communication protocol between clients and servers but also provides a complete framework for window management and graphical rendering.
- labwc: A Wayland compositor that constructs window composition and management functionalities based on the Wayland protocol. The compositor's primary task is to combine and display graphical content from application windows onto the screen. Labwc is a lightweight implementation among the many Wayland compositors.
For the X11, Wayfire, and labwc graphical interface protocols, the execution scripts to hide the mouse pointer differ, as outlined in the table below:
Graphical Interface Protocol | Hide Mouse Script |
---|---|
labwc | labwc_hide_mouse_cursor.sh |
X11 | x11_hide_mouse_crusor.sh |
Wayfire | wayland_hide_mouse_cursor.sh |
The following guide instructs users on how to hide the mouse pointer by executing different scripts when operating the Desktop system on ED-HMI series products.
2.1 Check the graphical interface protocol
Preparation:
- The device has successfully booted into the desktop and is connected to the network.
- No mouse is connected to the device’s USB port.
Steps:
- Open a terminal window on the system desktop and execute the following command.
- If the return value is x11, it indicates the system is currently using the X11 protocol.
- If the return value is wayland, it indicates the system is using either Wayfire or labwc (both part of the Wayland protocol ecosystem).
echo $XDG_SESSION_TYPE

- (Optional) the return value is wayland, proceed with the following command.
ps -ef | grep labwc
- As shown in the example below, if the return value contains the content marked by the red box (e.g., labwc), the device’s graphical interface protocol is labwc.
- As shown in the example below, if the return value does NOT contain the red-boxed content, the device’s graphical interface protocol is Wayfire.
TIP
The factory-default graphical interface protocol for the ED-HMI series Desktop system is labwc.
2.2 Hide the Mouse Pointer
2.2.1 X11 Protocol
Preparation:
- The system’s graphical interface protocol has been confirmed.
Steps:
- Obtain the execution script file: x11_hide_mouse_crusor.sh。
- Copy the downloaded script to any directory on the ED-HMI device via USB drive (or SSH remote login).
- Open a terminal window on the system desktop and run the following command to grant execution permissions.
sudo chmod +x x11_hide_mouse_crusor.sh
- Open a terminal window again and execute the script to hide the mouse pointer.
sudo ./x11_hide_mouse_crusor.sh
- After the script completes, the device screen will flicker briefly, and the mouse pointer will disappear.
2.2.2 Wayfire Protocol
Preparation:
- The system’s graphical interface protocol has been confirmed.
Steps:
- Obtain the execution script file: wayland_hide_mouse_cursor.sh。
- Copy the downloaded script to any directory on the ED-HMI device via USB drive (or SSH remote login).
- Open a terminal window on the system desktop and run the following command to grant execution permissions.
sudo chmod +x wayland_hide_mouse_cursor.sh
- Open a terminal window again and execute the script to hide the mouse pointer.
sudo ./wayland_hide_mouse_cursor.sh
- After the script completes, the device screen will flicker briefly, and the mouse pointer will disappear.
2.2.3 labwc Protocol
Preparation:
- The system’s graphical interface protocol has been confirmed.
Steps:
- Obtain the execution script file: labwc_hide_mouse_cursor.sh。
- Copy the downloaded script to any directory on the ED-HMI device via USB drive (or SSH remote login).
- Open a terminal window on the system desktop and run the following command to grant execution permissions.
sudo chmod +x labwc_hide_mouse_cursor.sh
- Open a terminal window again and execute the script to hide the mouse pointer.
sudo ./labwc_hide_mouse_cursor.sh
TIP
This script may take longer to complete due to the installation of compilation toolkits and cloning dependencies. If execution fails (likely due to network issues), contact our engineering team.
- After the script completes, the device screen will flicker briefly, and the mouse pointer will disappear.