From 076310759588c7b10d6e2a4ae8da9e472d6f1240 Mon Sep 17 00:00:00 2001 From: Samuel Dionne-Riel Date: Fri, 1 Nov 2024 00:54:02 -0400 Subject: [PATCH] modules/steam: Allow using the BGRT for the updater applet --- modules/steam/updater.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/steam/updater.nix b/modules/steam/updater.nix index 252e6a19..f0310e19 100644 --- a/modules/steam/updater.nix +++ b/modules/steam/updater.nix @@ -18,6 +18,7 @@ in type = types.enum [ "steamos" "jovian" + "bgrt" "vendor" ]; default = "steamos"; @@ -28,6 +29,8 @@ in When `jovian`, this will use the Jovian Experiments logo, scaled appropriately. + When `bgrt`, the BGRT (UEFI vendor logo) will be used. + When `vendor`, the vendor default will not be changed. This differs from `default` in that on systems other than the Steam Deck, the scaling may not be correct. @@ -68,6 +71,9 @@ in ${optionalString (cfg.updater.splash == "jovian") '' jovian_updater_logo="${../../artwork/logo/splash.png}" ''} + ${optionalString (cfg.updater.splash == "bgrt") '' + jovian_updater_logo="--bgrt" + ''} ${pkgs.jovian-updater-logo-helper}/bin/jovian-updater-logo-helper "$jovian_updater_logo" "/run/jovian/steam-splash.png" '';