mirror of
https://github.com/danbulant/dots-hyprland
synced 2026-05-24 12:22:09 +00:00
37 lines
1.2 KiB
QML
37 lines
1.2 KiB
QML
import "../"
|
|
import "root:/"
|
|
import "root:/services"
|
|
import "root:/modules/common"
|
|
import "root:/modules/common/widgets"
|
|
import "root:/modules/common/functions/string_utils.js" as StringUtils
|
|
import QtQuick
|
|
import Quickshell
|
|
import Quickshell.Io
|
|
import Quickshell.Hyprland
|
|
|
|
QuickToggleButton {
|
|
toggled: Bluetooth.bluetoothEnabled
|
|
buttonIcon: Bluetooth.bluetoothConnected ? "bluetooth_connected" : Bluetooth.bluetoothEnabled ? "bluetooth" : "bluetooth_disabled"
|
|
onClicked: {
|
|
toggleBluetooth.running = true
|
|
}
|
|
altAction: () => {
|
|
Quickshell.execDetached(["bash", "-c", `${Config.options.apps.bluetooth}`])
|
|
Hyprland.dispatch("global quickshell:sidebarRightClose")
|
|
}
|
|
Process {
|
|
id: toggleBluetooth
|
|
command: ["bash", "-c", `bluetoothctl power ${Bluetooth.bluetoothEnabled ? "off" : "on"}`]
|
|
onRunningChanged: {
|
|
if(!running) {
|
|
Bluetooth.update()
|
|
}
|
|
}
|
|
}
|
|
StyledToolTip {
|
|
content: StringUtils.format(Translation.tr("{0} | Right-click to configure"),
|
|
(Bluetooth.bluetoothEnabled && Bluetooth.bluetoothDeviceName.length > 0) ?
|
|
Bluetooth.bluetoothDeviceName : Translation.tr("Bluetooth"))
|
|
|
|
}
|
|
}
|