KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
rpi-splash-screen-support
★ 16
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
clausenaut
:
LLM-Powered Document Query System
verdex-mcp
:
MCP Server for Playwright Test Writing
AAGATE
:
No description available.
mind_haven_backend
:
No description available.
langchain4f-paperfly
:
尚硅谷的langchain4j学习笔记,并补充了尚硅谷关于RAG高级部分没有讲的代码调用示例
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
rpi-splash-screen-support
?
Download (.md)
# rpi-splash-screen-support This package provides a tool to configure and setup the fullscreen splash screen for Raspberry Pi OS. This splash image is drawn early in the boot process. This tool will configure the kernel to show a fullscreen splash image at boot time, instead of the default four raspberries. Upon operation, the only thing that should be drawn to the display will be the splash image, followed by whatever application overwrites it next (e.g. desktop, login console, etc). ## Requirements - A 24-bit TGA image - Image dimensions of 1920x1080px or smaller - Image must contain at most 224 colours An example command to generate an image from a PNG file, to meet the requirements is given below. ```bash convert logo.png -flip -colors 224 -depth 8 -type TrueColor -alpha off -compress none -define tga:bits-per-sample=8 logo.tga ``` ## Installation To install the package, run the following command: ```bash sudo apt install rpi-splash-screen-support ``` ## Usage To configure the splash screen, run the following command, replacing `<splash-image>` with the path of the image file to use. This path can be relative or absolute. ```bash sudo configure-splash <splash-image> ``` This will provide the necessary changes to the kernel to enable the splash screen. ## Building ```bash dpkg-buildpackage -us -uc ```