lux-shell/modules/bar/components/bluetooth/Bluetooth.qml
2025-09-05 17:22:16 -04:00

18 lines
307 B
QML

import qs.components
import qs.config
StyledIconButton {
id: root
text: Styling.lucide.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
}
}