From c36481db52bbc4e1c5a62a4e9e59fabed7d1e61d Mon Sep 17 00:00:00 2001 From: Michele Date: Fri, 12 Oct 2018 20:49:44 +0200 Subject: bluetooth dedicated icons in notifications the icon in notifications is now a bluetooth specific one if audio is over a bt device --- src/info-notification.vala | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/info-notification.vala b/src/info-notification.vala index e093aae..4ddd814 100644 --- a/src/info-notification.vala +++ b/src/info-notification.vala @@ -82,13 +82,14 @@ public class IndicatorSound.InfoNotification: Notification switch (active_output) { case VolumeControl.ActiveOutput.SPEAKERS: case VolumeControl.ActiveOutput.HEADPHONES: - case VolumeControl.ActiveOutput.BLUETOOTH_HEADPHONES: - case VolumeControl.ActiveOutput.BLUETOOTH_SPEAKER: case VolumeControl.ActiveOutput.USB_SPEAKER: case VolumeControl.ActiveOutput.USB_HEADPHONES: case VolumeControl.ActiveOutput.HDMI_SPEAKER: case VolumeControl.ActiveOutput.HDMI_HEADPHONES: return "audio-volume-high"; + case VolumeControl.ActiveOutput.BLUETOOTH_HEADPHONES: + case VolumeControl.ActiveOutput.BLUETOOTH_SPEAKER: + return "audio-speakers-bluetooth-symbolic"; default: return ""; -- cgit v1.2.3