aboutsummaryrefslogtreecommitdiff
path: root/quickshell/items/LowEnergy.qml
diff options
context:
space:
mode:
Diffstat (limited to 'quickshell/items/LowEnergy.qml')
-rw-r--r--quickshell/items/LowEnergy.qml28
1 files changed, 0 insertions, 28 deletions
diff --git a/quickshell/items/LowEnergy.qml b/quickshell/items/LowEnergy.qml
deleted file mode 100644
index bfd33ab..0000000
--- a/quickshell/items/LowEnergy.qml
+++ /dev/null
@@ -1,28 +0,0 @@
-import QtQuick
-import QtQuick.Layouts
-
-RowLayout {
- spacing: 0
- opacity: !shellRoot.dnd
- Text {
- text: " Low Energy:"
- color: shellRoot.white
- font {
- family: shellRoot.fontFamily
- pixelSize: shellRoot.fontSize
- }
- }
- Text {
- text: bluetoothName
- color: bluetoothName == "Offline" ? shellRoot.red : shellRoot.green
- font {
- family: shellRoot.fontFamily
- pixelSize: shellRoot.fontSize
- bold: true
- }
- }
- MouseArea {
- anchors.fill: parent
- onClicked: bluetoothManagerProc.running = true
- }
-}