Theme Plymouth: chat photographe anime au boot
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
BIN
scripts/plymouth-theme/background.png
Normal file
|
After Width: | Height: | Size: 9.9 KiB |
BIN
scripts/plymouth-theme/frame-0000.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
scripts/plymouth-theme/frame-0001.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
scripts/plymouth-theme/frame-0002.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
scripts/plymouth-theme/frame-0003.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
scripts/plymouth-theme/frame-0004.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
scripts/plymouth-theme/frame-0005.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
scripts/plymouth-theme/frame-0006.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
scripts/plymouth-theme/frame-0007.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
scripts/plymouth-theme/frame-0008.png
Normal file
|
After Width: | Height: | Size: 19 KiB |
BIN
scripts/plymouth-theme/frame-0009.png
Normal file
|
After Width: | Height: | Size: 19 KiB |
BIN
scripts/plymouth-theme/frame-0010.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
scripts/plymouth-theme/frame-0011.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
scripts/plymouth-theme/frame-0012.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
scripts/plymouth-theme/frame-0013.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
scripts/plymouth-theme/frame-0014.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
scripts/plymouth-theme/frame-0015.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
scripts/plymouth-theme/frame-0016.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
scripts/plymouth-theme/frame-0017.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
scripts/plymouth-theme/frame-0018.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
scripts/plymouth-theme/frame-0019.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
8
scripts/plymouth-theme/photobooth.plymouth
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
[Plymouth Theme]
|
||||||
|
Name=Photobooth
|
||||||
|
Description=Chat photographe - Animation de demarrage
|
||||||
|
ModuleName=script
|
||||||
|
|
||||||
|
[script]
|
||||||
|
ImageDir=/usr/share/plymouth/themes/photobooth
|
||||||
|
ScriptFile=/usr/share/plymouth/themes/photobooth/photobooth.script
|
||||||
18
scripts/plymouth-theme/photobooth.script
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
// Animation du chat photographe
|
||||||
|
frame = 0;
|
||||||
|
total_frames = 20;
|
||||||
|
|
||||||
|
for (i = 0; i < total_frames; i++) {
|
||||||
|
frames[i] = Image("frame-" + String(i).PadLeft(4, "0") + ".png");
|
||||||
|
}
|
||||||
|
|
||||||
|
bg = Image("background.png");
|
||||||
|
|
||||||
|
fun refresh_callback() {
|
||||||
|
bg.Draw(0, 0);
|
||||||
|
frames[frame].Draw(0, 0);
|
||||||
|
frame = (frame + 1) % total_frames;
|
||||||
|
}
|
||||||
|
|
||||||
|
Plymouth.SetRefreshFunction(refresh_callback);
|
||||||
|
Plymouth.SetRefreshRate(5);
|
||||||