I tried three way for hiding mouse, but not work:
1. Unclutter:
```
unclutter -idle 0 -root -display :0
``
It shows unclutter: could not open display
2. startx -nocursor -> not work
3. Using xbanish and boot from Systemd:
```
~/.config/systemd/user/xbanish.service
```
[Unit]
Description=xbanish
After=default.target
[Service]
Type=simple
ExecStart=/usr/bin/xbanish
Restart=on-failure
StartLimitBurst=10
RestartSec=30
[Install]
WantedBy=default.target
Is there any good way for hiding mouse on XFCE4 desktop (Armbian) ?
Thanks