summaryrefslogtreecommitdiff
path: root/accounts/gkleen@sif/shell/quickshell/Bar.qml
diff options
context:
space:
mode:
Diffstat (limited to 'accounts/gkleen@sif/shell/quickshell/Bar.qml')
-rw-r--r--accounts/gkleen@sif/shell/quickshell/Bar.qml31
1 files changed, 27 insertions, 4 deletions
diff --git a/accounts/gkleen@sif/shell/quickshell/Bar.qml b/accounts/gkleen@sif/shell/quickshell/Bar.qml
index 3652af54..399b566f 100644
--- a/accounts/gkleen@sif/shell/quickshell/Bar.qml
+++ b/accounts/gkleen@sif/shell/quickshell/Bar.qml
@@ -1,7 +1,6 @@
1import Quickshell 1import Quickshell
2import QtQuick 2import QtQuick
3 3
4
5PanelWindow { 4PanelWindow {
6 id: bar 5 id: bar
7 6
@@ -64,25 +63,49 @@ PanelWindow {
64 anchors.verticalCenter: parent.verticalCenter 63 anchors.verticalCenter: parent.verticalCenter
65 spacing: 0 64 spacing: 0
66 65
67 PipewireWidget {} 66 PrivacyWidget {
67 id: privacy
68 }
69
70 Item {
71 enabled: privacy.active
72 height: parent.height
73 width: 8
74 }
75
76 BatteryWidget {}
77
78 Item {
79 height: parent.height
80 width: 8
81 }
82
83 BrightnessWidget {}
68 84
69 Item { 85 Item {
70 height: parent.height 86 height: parent.height
71 width: 4 87 width: 4
72 } 88 }
73 89
90 PipewireWidget {}
91
92 Item {
93 height: parent.height
94 width: 2
95 }
96
74 SystemTray {} 97 SystemTray {}
75 98
76 Item { 99 Item {
77 height: parent.height 100 height: parent.height
78 width: 4 101 width: 2
79 } 102 }
80 103
81 KeyboardLayout {} 104 KeyboardLayout {}
82 105
83 Item { 106 Item {
84 height: parent.height 107 height: parent.height
85 width: 4 108 width: 8 - 4
86 } 109 }
87 110
88 Clock {} 111 Clock {}