Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f83e49fe authored by Ahmed Mehfooz's avatar Ahmed Mehfooz
Browse files

[DesktopStatusBar] Add new notification bell icon

Test: manual
Bug: 433589833
Flag: com.android.systemui.status_bar_for_desktop
Change-Id: If39ab08d6ad76538cceb10135af1633869696e8c
parent 2811e945
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
<vector xmlns:android="http://schemas.android.com/apk/res/android"
        android:width="12dp"
        android:height="14dp"
        android:viewportWidth="10.23"
        android:viewportHeight="13.53">
    <path
        android:pathData="M0.82,11.437C0.598,11.437 0.403,11.359 0.237,11.203C0.081,11.048 0.003,10.853 0.003,10.62C0.003,10.398 0.081,10.209 0.237,10.053C0.392,9.887 0.587,9.803 0.82,9.803L0.687,9.803L0.687,6.12C0.687,5.076 0.998,4.148 1.62,3.337C2.253,2.526 3.081,2.02 4.103,1.82L4.103,1.02C4.103,0.731 4.198,0.492 4.387,0.303C4.587,0.103 4.831,0.003 5.12,0.003C5.409,0.003 5.648,0.103 5.837,0.303C6.037,0.492 6.137,0.731 6.137,1.02L6.137,1.82C7.159,2.02 7.981,2.526 8.603,3.337C9.237,4.148 9.553,5.076 9.553,6.12L9.553,9.803L9.42,9.803C9.653,9.803 9.848,9.887 10.003,10.053C10.159,10.209 10.237,10.398 10.237,10.62C10.237,10.842 10.159,11.037 10.003,11.203C9.848,11.359 9.653,11.437 9.42,11.437L0.82,11.437ZM5.12,13.537C4.764,13.537 4.459,13.414 4.203,13.17C3.948,12.914 3.82,12.603 3.82,12.237L6.437,12.237C6.437,12.603 6.309,12.914 6.053,13.17C5.798,13.414 5.487,13.537 5.12,13.537Z"
        android:fillColor="#FFFFFFFF"/>
</vector>
+2 −1
Original line number Diff line number Diff line
@@ -171,7 +171,8 @@ private fun NotificationsChip(viewModel: HomeStatusBarViewModel, modifier: Modif
            isDarkProvider = { bounds -> viewModel.areaDark.isDarkTheme(bounds) },
        ) { tint ->
            Icon(
                icon = Icon.Resource(res = R.drawable.ic_volume_ringer, contentDescription = null),
                icon =
                    Icon.Resource(res = R.drawable.ic_notification_bell, contentDescription = null),
                tint = tint,
                modifier = Modifier.size(20.dp).padding(1.dp),
            )