Install
openclaw skills install claw-mouseControl a Linux X11 desktop by taking screenshots and moving/clicking/typing via xdotool + scrot.
openclaw skills install claw-mouseThis skill provides a small, scriptable desktop GUI control helper for Linux X11.
It’s intended for “vision loop” automation:
Under the hood it wraps:
scrot for screenshotsxdotool for mouse/keyboard/window controldesktopctl.py — the CLI scriptpython3xdotoolscrotUbuntu/Debian:
sudo apt-get update
sudo apt-get install -y xdotool scrot
From this skill directory:
python3 desktopctl.py screenshot
python3 desktopctl.py click 500 300
python3 desktopctl.py type "hello"
python3 desktopctl.py key ctrl+l
python3 desktopctl.py windows
python3 desktopctl.py activate "Chromium"
If you’re running from a daemon/headless shell where DISPLAY isn’t set:
DISPLAY=:0 XAUTHORITY=$HOME/.Xauthority python3 desktopctl.py screenshot
Or use flags:
python3 desktopctl.py --display :0 --xauthority $HOME/.Xauthority screenshot
This can click/type into your real desktop session. Use carefully.