From 7a633161cb55b973a69a9c8d5ee2c8fcb1857aed Mon Sep 17 00:00:00 2001 From: aricloverEXTRA <157071384+aricloverEXTRA@users.noreply.github.com> Date: Tue, 27 Jan 2026 05:35:07 -0600 Subject: [PATCH] Add notification 2024 icon style + updated default icon style. Adds in the 2024 Icon Style to Notifications nostalgic customization settings, the 2024 Icon style was originally used as the Default style but ever since YouTube introduced new notifications icons in 2025 I opted to use the most recent ones for the customization! --- Sources/uYouPlus.xm | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/Sources/uYouPlus.xm b/Sources/uYouPlus.xm index d284b51..06f37b3 100644 --- a/Sources/uYouPlus.xm +++ b/Sources/uYouPlus.xm @@ -37,20 +37,24 @@ static int getNotificationIconStyle() { NSString *imageName; UIColor *iconColor; switch (getNotificationIconStyle()) { - case 1: // Thin outline style (2020+) + case 1: // Bold outline style (2024+) + imageName = isSelected ? @"notifications_selected" : @"notifications_unselected"; + iconColor = [%c(YTColor) white1]; + break; + case 2: // Thin outline style (2020+) imageName = isSelected ? @"notifications_selected" : @"notifications_24pt"; iconColor = [%c(YTColor) white1]; break; - case 2: // Filled style (2018+) + case 3: // Filled style (2018+) imageName = @"notifications_selected"; iconColor = isSelected ? [%c(YTColor) white1] : [UIColor grayColor]; break; - case 3: // Inbox style (2014+) + case 4: // Inbox style (2014+) imageName = @"inbox_selected"; iconColor = isSelected ? [%c(YTColor) white1] : [UIColor grayColor]; break; - default: // Default style - imageName = isSelected ? @"notifications_selected" : @"notifications_unselected"; + default: // Default style (2025+) + imageName = isSelected ? @"notifications_selected_2025" : @"notifications_unselected_2025"; iconColor = [%c(YTColor) white1]; break; }