# Resolve Tiny Unclickable Screen Area Issue on Ubuntu

For those who are facing the same issue on *ubuntu* -&gt; **It seems there was an invisible window covering everything on my desktop, preventing me from clicking on other windows, files, text, and other items I needed to access.** I searched for a solution and found some options. I had to visit several websites to find the perfect solution. In this article, I will compile all of them into one place. I'm still not sure how I got rid of it, but you should try the following.:-

### Basic steps to follow

1\. Do not panic Ü

2\. Try Restarting or Logging out

3\. Try [changing the windowing system(X11, Wayland, Xorg)](https://beebom.com/how-switch-between-wayland-xorg-ubuntu/) to another one and logging again with your default windowing system.

### 1st Solution - Use `xkill` command

[**xkill**](https://www.x.org/archive/X11R7.0/doc/html/xkill.1.html) is a utility used for force-quitting GUI apps. It is handy when some app isn't responding or is causing your system to work abnormally.

Enter `xkill` in a terminal, or you can also press **Alt+F2** to quickly access the command window. Your cursor will turn into a cross sign. Then click on the area you are unable to click or highlight. If it's a crashed application, that should terminate it.

If the above command didn't do anything try `xkill -frame` .

**<mark>NOTE :</mark>** <mark> This is a moderately dangerous command, use with caution.</mark>

### 2nd Solution - Use Process ID to kill it

To get the process ID, run `xprop` in a terminal. Your cursor will turn into a + sign (or something similar). Click on the problematic area to get the process ID.

![A terminal window displaying the output of the  command, detailing properties and settings of an open application window, including object paths, frame extents, window role, types, sync request counters, user time, client machine, process ID, locale, and other protocols and hints.](https://cdn.hashnode.com/res/hashnode/image/upload/v1719947205826/4cbd85d3-a1a3-4360-9fb6-6434e828f4bf.png align="center")

Look for the line that says,

`NETWM_PID(CARDINAL) = XXXX` -&gt; (xxxx will be the process PID and can be passed into the `kill` command)

Once you have the Process PID, open the terminal and run `kill xxxx`**(replace xxxx with the process PID you've got)**, and it will forcefully kill the process ッ

---

### References

[https://ubuntuforums.org/archive/index.php/t-1714078.html](https://ubuntuforums.org/archive/index.php/t-1714078.html)

[http://ubuntuforums.org/showthread.php?t=1752249](http://ubuntuforums.org/showthread.php?t=1752249)
