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.qml29
1 files changed, 22 insertions, 7 deletions
diff --git a/accounts/gkleen@sif/shell/quickshell/Bar.qml b/accounts/gkleen@sif/shell/quickshell/Bar.qml
index 3652af54..f8092604 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,41 @@ PanelWindow {
64 anchors.verticalCenter: parent.verticalCenter 63 anchors.verticalCenter: parent.verticalCenter
65 spacing: 0 64 spacing: 0
66 65
67 PipewireWidget {} 66 KeyboardLayout {}
68 67
69 Item { 68 Item {
69 visible: privacy.visible
70 height: parent.height 70 height: parent.height
71 width: 4 71 width: 8 - 4
72 } 72 }
73 73
74 SystemTray {} 74 PrivacyWidget {
75 id: privacy
76 }
75 77
76 Item { 78 Item {
79 visible: privacy.visible
77 height: parent.height 80 height: parent.height
78 width: 4 81 width: 8 - 4
79 } 82 }
80 83
81 KeyboardLayout {} 84 SystemTray {}
85
86 PipewireWidget {}
87
88 BrightnessWidget {}
89
90 BatteryWidget {}
91
92 WaylandInhibitorWidget {
93 window: bar
94 }
95
96 LidSwitchInhibitorWidget {}
82 97
83 Item { 98 Item {
84 height: parent.height 99 height: parent.height
85 width: 4 100 width: 8 - 4
86 } 101 }
87 102
88 Clock {} 103 Clock {}