We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32921bb commit c5b8a11Copy full SHA for c5b8a11
3 files changed
dot_files/quickshell/modules/bar/StatusBar.qml
@@ -235,9 +235,11 @@ PanelWindow {
235
? "Bluetooth: " + Services.BluetoothStatus.connectedDeviceName
236
: "Bluetooth: On")
237
: "Bluetooth: Off"
238
- textColor: Services.BluetoothStatus.powered
239
- ? Common.Appearance.m3colors.onSurface
240
- : Common.Appearance.m3colors.onSurfaceVariant
+ textColor: Services.BluetoothStatus.connected
+ ? Common.Appearance.m3colors.primary
+ : (Services.BluetoothStatus.powered
241
+ ? Common.Appearance.m3colors.onSurface
242
+ : Common.Appearance.m3colors.onSurfaceVariant)
243
onClicked: Root.GlobalStates.toggleSidebarRight(root.targetScreen, "bluetooth")
244
}
245
0 commit comments