mirror of
https://github.com/noctalia-dev/noctalia-shell.git
synced 2026-05-11 17:08:27 +08:00
14 lines
344 B
QML
14 lines
344 B
QML
import QtQuick.Layouts
|
|
import Quickshell
|
|
import qs.Commons
|
|
import qs.Services
|
|
import qs.Widgets
|
|
|
|
NIconButtonHot {
|
|
property ShellScreen screen
|
|
|
|
icon: BluetoothService.enabled ? "bluetooth" : "bluetooth-off"
|
|
tooltipText: I18n.tr("quickSettings.bluetooth.tooltip.action")
|
|
onClicked: PanelService.getPanel("bluetoothPanel")?.toggle(this)
|
|
}
|