Skip to content

Commit

Permalink
FAQ: updates (#999)
Browse files Browse the repository at this point in the history
* FAQ: remove unavailable php.ini screenshot

* FAQ: how to hide mouse cursor on bookworm
  • Loading branch information
andi34 authored Dec 1, 2024
1 parent f334ab7 commit 5cfe838
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions docs/faq/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -521,6 +521,20 @@ The flag `--use-gl=egl` might only be needed on a Raspberry Pi to avoid a white

## How to hide the mouse cursor, disable screen blanking and screen saver?

**Pi OS bookworm**

Applications like _unclutter_ don't work on Wayland.

To hide the mouse cursor we can rename the icon to hide it:
```
sudo mv /usr/share/icons/PiXflat/cursors/left_ptr /usr/share/icons/PiXflat/cursors/left_ptr.bak
```

To make the mouse cursor visible again we need to rename it back to it's original name:
```
sudo mv /usr/share/icons/PiXflat/cursors/left_ptr.bak /usr/share/icons/PiXflat/cursors/left_ptr
```

**Pi OS Bullseye and prior only**

There are two options to hide the cursor on Pi OS Bullseye and prior. The first approach allows you to show the cursor for a short period of time (helpful if you use a mouse and just want to hide the cursor of some time of inactivity), or to hide it permanently.
Expand Down Expand Up @@ -843,13 +857,7 @@ Now restart your Chromium browser.
Open [http://localhost/phpinfo.php](http://localhost/phpinfo.php) in your browser.
Take a look for "Loaded Configuration File", you need _sudo_ rights to edit the file.
Page will look like this:
<details><summary>CLICK ME</summary>
<img src="../resources/img/faq/php-ini.png" alt="php.ini Screenshot">
</details>
Take a look for "Loaded Configuration File" to get the path of your php.ini, you need _sudo_ rights to edit the file.
---
Expand Down

0 comments on commit 5cfe838

Please sign in to comment.