Merge pull request #366 from TheParadoxBox/change-plymouth-text-font

Font improvements in W95 Plymouth theme
This commit is contained in:
grassmunk 2025-02-13 11:02:20 -08:00 committed by GitHub
commit 71e854e45f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 2 deletions

View File

@ -106,7 +106,7 @@ fun display_password_callback (prompt, bullets)
dialog_setup(); dialog_setup();
else else
dialog_opacity(1); dialog_opacity(1);
dialog.prompt_sprite.SetImage(Image.Text(prompt, 1, 0.5, 0, 1, "Mono Bold 14")); dialog.prompt_sprite.SetImage(Image.Text(prompt, 1, 0.5, 0, 1, "Helvetica Bold 18"));
dialog.prompt_sprite.SetPosition(((screen_width) * 0.3), (screen_height * 0.9), 2); dialog.prompt_sprite.SetPosition(((screen_width) * 0.3), (screen_height * 0.9), 2);
for (index = 0; dialog.bullet[index] || index < 19; index++) for (index = 0; dialog.bullet[index] || index < 19; index++)
{ {
@ -171,7 +171,7 @@ message_sprite.SetPosition((screen_width * 0.3), (screen_height * 0.9), 2);
fun message_callback (text) fun message_callback (text)
{ {
my_image = Image.Text(text, 1, 0.5, 0, 1, "Mono Bold 14"); my_image = Image.Text(text, 1, 0.5, 0, 1, "Helvetica Bold 18");
message_sprite.SetImage(my_image); message_sprite.SetImage(my_image);
} }

View File

@ -4,6 +4,8 @@ The Windows95 boot theme is based on the template provided by [http://brej.org/b
It is meant to simulate the Windows 95 boot screen and shutdown screen. It is meant to simulate the Windows 95 boot screen and shutdown screen.
If you wish to use a font other than Helvetica as provided by Cronyx Cyrillic, you must change all occurences of "Helvetica Bold 18" in Chicago95.script to your preferred font.
The RetroTux boot theme is based on the xubuntu-logo Plymouth theme. The RetroTux boot theme is based on the xubuntu-logo Plymouth theme.
#### Install instructions for XUbuntu #### Install instructions for XUbuntu