mirror of
https://github.com/zoriya/noctalia-shell.git
synced 2026-08-08 23:37:49 +00:00
16 lines
362 B
QML
16 lines
362 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", screen)?.toggle(this)
|
|
}
|
|
}
|