Add Solaris theme, app image script fixes

This commit is contained in:
markmental 2026-03-28 16:35:50 -04:00
commit f4121ad78a
4 changed files with 50 additions and 46 deletions

View file

@ -78,9 +78,13 @@ echo -e "${GREEN}Creating AppImage...${NC}"
-i AppDir/usr/share/icons/hicolor/256x256/apps/passport-c-media-player.png -i AppDir/usr/share/icons/hicolor/256x256/apps/passport-c-media-player.png
# Rename output file # Rename output file
if [ -f "Passport_C_Media_Player-x86_64.AppImage" ]; then # Use wildcard to find whatever AppImage was created (handles underscore/dash variations)
mv "Passport_C_Media_Player-x86_64.AppImage" "${OUTPUT_NAME}" for file in Passport*.AppImage; do
fi if [ -f "$file" ]; then
mv "$file" "${OUTPUT_NAME}"
break
fi
done
if [ -f "${OUTPUT_NAME}" ]; then if [ -f "${OUTPUT_NAME}" ]; then
echo -e "${GREEN}Success! Created ${OUTPUT_NAME}${NC}" echo -e "${GREEN}Success! Created ${OUTPUT_NAME}${NC}"

BIN
src/app.o

Binary file not shown.

View file

@ -378,50 +378,50 @@ static const GuideTheme GUIDE_THEMES[GUIDE_THEME_COUNT] = {
.rounded_radius = 8 .rounded_radius = 8
}, },
{ {
.name = "SATURDAY MORNING", .name = "SOLARIS CDE",
.background_top = {0xff,0x6b,0x9d,0xff}, .background_top = {0xc5,0xc9,0xd6,0xff},
.background_mid = {0xed,0x72,0x7b,0xff}, .background_mid = {0xae,0xb2,0xc3,0xff},
.background_bottom = {0xc4,0x45,0x69,0xff}, .background_bottom = {0x9a,0x9e,0xb0,0xff},
.panel_fill = {0x66,0xff,0x00,0xff}, .panel_fill = {0xae,0xb2,0xc3,0xff},
.panel_text = {0xff,0xff,0xff,0xff}, .panel_text = {0x00,0x00,0x00,0xff},
.panel_border = {0x8b,0x3c,0x45,0xff}, .panel_border = {0x8a,0x8f,0xa0,0xff},
.status_divider = {0xff,0xee,0x88,0xff}, .status_divider = {0x8a,0x8f,0xa0,0xff},
.status_text = {0x11,0x11,0x11,0xff}, .status_text = {0x00,0x00,0x00,0xff},
.status_top = {0xff,0xe0,0xb8,0xff}, .status_top = {0xc5,0xc9,0xd6,0xff},
.status_mid = {0xff,0xc9,0xa5,0xff}, .status_mid = {0xae,0xb2,0xc3,0xff},
.status_bottom = {0xff,0xaf,0x8a,0xff}, .status_bottom = {0x9a,0x9e,0xb0,0xff},
.ribbon_top = {0xff,0xa1,0x52,0xff}, .ribbon_top = {0xb2,0x4d,0x7a,0xff},
.ribbon_mid = {0xff,0x8c,0x42,0xff}, .ribbon_mid = {0x9a,0x3f,0x67,0xff},
.ribbon_bottom = {0xd8,0x61,0x20,0xff}, .ribbon_bottom = {0x82,0x34,0x56,0xff},
.ribbon_text = {0xff,0xff,0xff,0xff}, .ribbon_text = {0xff,0xff,0xff,0xff},
.row_top = {0xff,0x9d,0x68,0xff}, .row_top = {0xb8,0xbc,0xc8,0xff},
.row_mid = {0xf2,0x7d,0x54,0xff}, .row_mid = {0xae,0xb2,0xc3,0xff},
.row_bottom = {0xc4,0x45,0x69,0xff}, .row_bottom = {0x9a,0x9e,0xb0,0xff},
.row_active_top = {0xff,0xa3,0x4f,0xff}, .row_active_top = {0xb2,0x4d,0x7a,0xff},
.row_active_mid = {0xff,0x8c,0x42,0xff}, .row_active_mid = {0x9a,0x3f,0x67,0xff},
.row_active_bottom = {0xd8,0x5f,0x10,0xff}, .row_active_bottom = {0x82,0x34,0x56,0xff},
.row_text = {0xff,0xff,0xff,0xff}, .row_text = {0x00,0x00,0x00,0xff},
.row_subtext = {0xff,0xf2,0xd6,0xff}, .row_subtext = {0x66,0x66,0x66,0xff},
.row_active_text = {0xff,0xff,0x00,0xff}, .row_active_text = {0xff,0xff,0xff,0xff},
.row_active_subtext = {0xff,0xf4,0xa8,0xff}, .row_active_subtext = {0xe0,0xe0,0xe0,0xff},
.block_top = {0x7b,0xe0,0xd9,0xff}, .block_top = {0xc8,0xcc,0xd6,0xff},
.block_mid = {0x4e,0xcd,0xc4,0xff}, .block_mid = {0xbd,0xc1,0xcc,0xff},
.block_bottom = {0x23,0x92,0x93,0xff}, .block_bottom = {0xb2,0xb6,0xc1,0xff},
.block_active_top = {0xff,0xf5,0x96,0xff}, .block_active_top = {0xb2,0x4d,0x7a,0xff},
.block_active_mid = {0xff,0xe6,0x6d,0xff}, .block_active_mid = {0x9a,0x3f,0x67,0xff},
.block_active_bottom = {0xd8,0xb8,0x25,0xff}, .block_active_bottom = {0x82,0x34,0x56,0xff},
.block_text = {0xff,0xff,0xff,0xff}, .block_text = {0x00,0x00,0x00,0xff},
.block_active_text = {0xf5,0xf5,0xf0,0xff}, .block_active_text = {0xff,0xff,0xff,0xff},
.block_border = {0x9b,0xe8,0xe0,0xff}, .block_border = {0x8a,0x8f,0xa0,0xff},
.block_active_border = {0xff,0xfa,0xa6,0xff}, .block_active_border = {0xd0,0x6b,0x9a,0xff},
.selection_edge = {0xff,0xff,0x00,0xff}, .selection_edge = {0xb2,0x4d,0x7a,0xff},
.grid_line = {0xff,0xed,0xa1,0xaa}, .grid_line = {0x8a,0x8f,0xa0,0xaa},
.row_line_hi = {0xff,0xdb,0xaf,0xff}, .row_line_hi = {0xc5,0xc9,0xd6,0xff},
.row_line_lo = {0xa8,0x45,0x4e,0xff}, .row_line_lo = {0x8a,0x8f,0xa0,0xff},
.footer_top = {0xfb,0xfb,0xfb,0xff}, .footer_top = {0xc5,0xc9,0xd6,0xff},
.footer_mid = {0xea,0xea,0xea,0xff}, .footer_mid = {0xae,0xb2,0xc3,0xff},
.footer_bottom = {0xd2,0xd2,0xd2,0xff}, .footer_bottom = {0x9a,0x9e,0xb0,0xff},
.footer_text = {0x11,0x11,0x11,0xff}, .footer_text = {0x00,0x00,0x00,0xff},
.pill_light = {0xff,0xff,0xff,0xff}, .pill_light = {0xff,0xff,0xff,0xff},
.pill_shadow = {0x00,0x00,0x00,0x40}, .pill_shadow = {0x00,0x00,0x00,0x40},
.gloss = {0xff,0xff,0xff,0x70}, .gloss = {0xff,0xff,0xff,0x70},

BIN
src/ui.o

Binary file not shown.