diff options
Diffstat (limited to 'quickshell/shell.qml')
| -rw-r--r-- | quickshell/shell.qml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/quickshell/shell.qml b/quickshell/shell.qml index 2664ac3..369a87c 100644 --- a/quickshell/shell.qml +++ b/quickshell/shell.qml @@ -61,6 +61,7 @@ ShellRoot { property int battery: 12 property bool batteryCharging: false property string wifiName: "Offline" + property string bluetoothName: "Offline" Procs {} Process { @@ -68,6 +69,11 @@ ShellRoot { command: ["foot", "-e", "nmtui"] Component.onCompleted: running = false } + Process { + id: bluetoothManagerProc + command: ["foot", "-e", "bluetui"] + Component.onCompleted: running = false + } anchors.bottom: true anchors.left: true @@ -84,6 +90,7 @@ ShellRoot { Workspace {} Item { Layout.fillWidth: true } Radio {} + LowEnergy {} Electrons {} Waves {} Photons {} |
