Skip to content

Commit

Permalink
Merge pull request #3158 from raspberrypi/develop
Browse files Browse the repository at this point in the history
Push to production
  • Loading branch information
Alasdair Allan authored Oct 11, 2023
2 parents 42b2aa2 + 82cec4e commit 8ccaa9f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
10 changes: 7 additions & 3 deletions documentation/asciidoc/computers/configuration/screensaver.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ The `dpms_timeout` variable controls the number of seconds of inactivity require

=== Console

The `dpms_timeout` screen blanking configuration used by Raspberry Pi Configuration only effects desktop sessions. In *console mode*, when your Raspberry Pi is connected to a monitor and keyboard with only a terminal for input, use the `consoleblank` setting in the boot command line.
The `dpms_timeout` screen blanking configuration used by Raspberry Pi Configuration only affects desktop sessions. In *console mode*, when your Raspberry Pi is connected to a monitor and keyboard with only a terminal for input, use the `consoleblank` setting in the boot command line.

==== Set console mode screen blanking

Expand All @@ -47,9 +47,13 @@ To change the console mode screen blanking configuration, open `/boot/firmware/c
sudo nano /boot/firmware/cmdline.txt
----

You can adjust the number of seconds before Raspberry Pi OS blanks the console here. For instance, add `consoleblank=600` to disable HDMI output after 600 seconds of inactivity. Set the value to `0` to never blank the screen.
You can adjust the number of seconds before Raspberry Pi OS blanks the console here. For instance, add `consoleblank=600` to disable display output after 600 seconds of inactivity. Set the value to `0` to never blank the screen.

Changes to `cmdline.txt` only go into effect after a reboot. Use the `reboot` command to reboot your Raspberry Pi.
Changes to `cmdline.txt` only take effect after a reboot. Use the following command to reboot your Raspberry Pi:

----
sudo reboot
----

==== View current screen blanking setting

Expand Down
2 changes: 1 addition & 1 deletion documentation/asciidoc/computers/os/using-python.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Python 3 is installed by default on Raspberry Pi OS and is used for many importa

There are two routes to installing libraries into the default `python` distribution. Firstly you can use `apt` and install pre-configured system packages, or alternatively you can use `pip` to install packages that are not distributed as part of Raspberry Pi OS.

IMPORTANT: From _Bookworm_ onwards packages installed via `pip` must be installed into a Python Virtal Environment using `venv`. This has been imposed by the Python community not Raspberry Pi, see https://peps.python.org/pep-0668/[PEP 668] for more details
IMPORTANT: From _Bookworm_ onwards packages installed via `pip` must be installed into a Python Virtal Environment using `venv`. This has been introduced by the Python community not Raspberry Pi, see https://peps.python.org/pep-0668/[PEP 668] for more details

=== Installing Python packages using apt

Expand Down

0 comments on commit 8ccaa9f

Please sign in to comment.