diff options
Diffstat (limited to 'src/modules/popdowns/bluetoothdevices.tsx')
| -rw-r--r-- | src/modules/popdowns/bluetoothdevices.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/popdowns/bluetoothdevices.tsx b/src/modules/popdowns/bluetoothdevices.tsx index 7ba421c..c71d981 100644 --- a/src/modules/popdowns/bluetoothdevices.tsx +++ b/src/modules/popdowns/bluetoothdevices.tsx @@ -4,7 +4,7 @@ import AstalBluetooth from "gi://AstalBluetooth"; import PopdownWindow from "../../widgets/popdownwindow"; const BluetoothDevice = (device: AstalBluetooth.Device) => ( - <box className="device"> + <box className={bind(device, "connected").as(c => `device ${c ? "active" : ""}`)}> <icon className="icon" icon={bind(device, "icon").as(i => |