> ## Content Index
> Fetch the complete content index at: https://en.blog.themarfa.name/llms.txt
> Use this file to discover other available public pages before exploring further.

# Three Ways to Hide the Cursor on Linux
- URL: https://en.blog.themarfa.name/three-ways-to-hide-the-cursor-on-linux/
- Published: 2024-05-16T06:54:43.000Z
- Updated: 2024-05-16T06:54:43.000Z
- Description: Honestly, I don't know why anyone would need this, but there are special utilities that can hide and show the cursor with a hotkey. Let me tell you about them.
- Author: Konstantin Dokuchaev
- Tags: linux, unclutter-xfixes, xhidecursor, xbanish

Honestly, I don't know why anyone would need this, but there are special utilities that can hide and show the cursor with a hotkey. Let me tell you about them.

### unclutter-xfixes

This is a rewritten version of a similar utility called unclutter, but with support for the x11-xfixes extension. For us, this means fewer issues when working.

[Try unclutter-xfixes](https://github.com/Airblader/unclutter-xfixes)

### xhidecursor

A simple utility that hides the cursor when a hotkey is pressed and shows it when the mouse moves. Unlike its counterparts, xhidecursor has fewer lines of code and dependencies. Additionally, the utility only listens for the first mouse movement to display the cursor, not all movements. All this means that it consumes fewer resources.

[Try xhidecursor](https://github.com/astier/xhidecursor)

### xbanish

This utility can automatically hide the mouse cursor while typing and display it when the mouse moves or a button is pressed. It has x11 support.

[Try xbanish](https://github.com/jcs/xbanish)