Man page - configure-splash(8)

Packages contas this manual

Manual

CONFIGURE-SPLASH(8) System Manager's Manual CONFIGURE-SPLASH(8)

configure-splash - configure the fullscreen splash screen for Raspberry Pi OS

sudo configure-splash <splash-image>

The configure-splash tool configures and sets up a fullscreen splash screen for Raspberry Pi OS. This splash image is drawn early in the boot process, replacing the default four raspberries logo.

This tool will make the necessary changes to the kernel configuration to show a fullscreen splash image at boot time. Upon successful configuration, the only thing drawn to the display during the early boot phase will be the specified splash image, followed by the next application to take control of the display (e.g., the desktop environment, a login console, etc.).

The <splash-image> argument is the path to the image file to be used. This can be either a relative or an absolute path.

The splash image file must meet the following criteria:

  • Format: 24-bit TGA
  • Dimensions: Smaller than 1920x1080 pixels
  • Colors: Must contain less than 224 colors

An image can be converted from a format like PNG to a compliant TGA file using ImageMagick's convert(1) tool:

$ convert image.png -flip -colors 224 -depth 8 -type TrueColor -alpha off -compress none -define tga:bits-per-sample=8 logo.tga

To set the newly created `logo.tga` as the splash screen:

$ sudo configure-splash logo.tga

Modifies kernel configuration files to enable the splash screen functionality.

convert(1)

No known bugs.

August 2025 rpi-splash-screen-support