lux-shell/modules/bar/components/bluetooth/Bluetooth.qml
2025-08-29 15:27:21 -04:00

18 lines
295 B
QML

import qs.components
import qs.constants
StyledIconButton {
id: root
text: Icons.bluetooth
onClicked: popup.toggle()
BluetoothMenu {
id: popup
anchor.item: root
anchor.rect.x: root.width / 2 - width / 2
anchor.rect.y: root.height + 8
}
}