diff --git a/opencore_legacy_patcher/constants.py b/opencore_legacy_patcher/constants.py index b9f3f2c2d..1944fdf9b 100644 --- a/opencore_legacy_patcher/constants.py +++ b/opencore_legacy_patcher/constants.py @@ -782,6 +782,10 @@ class Constants: def icon_path_macos_sonoma(self): return self.icns_resource_path / Path("Sonoma.icns") + @property + def icon_path_macos_sequoia(self): + return self.icns_resource_path / Path("Sequoia.icns") + @property def gui_path(self): return self.payload_path / Path("Icon/Resources.zip") @@ -810,7 +814,8 @@ class Constants: str(self.icon_path_macos_big_sur), str(self.icon_path_macos_monterey), str(self.icon_path_macos_ventura), - str(self.icon_path_macos_sonoma) + str(self.icon_path_macos_sonoma), + str(self.icon_path_macos_sequoia), ] sbm_values = [ diff --git a/payloads/Icon/AppIcons/Sequoia.icns b/payloads/Icon/AppIcons/Sequoia.icns new file mode 100644 index 000000000..7e3016dda Binary files /dev/null and b/payloads/Icon/AppIcons/Sequoia.icns differ