diff options
Diffstat (limited to 'accounts/gkleen@sif/shell/quickshell/Bar.qml')
-rw-r--r-- | accounts/gkleen@sif/shell/quickshell/Bar.qml | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/accounts/gkleen@sif/shell/quickshell/Bar.qml b/accounts/gkleen@sif/shell/quickshell/Bar.qml index aab1607f..52b9b344 100644 --- a/accounts/gkleen@sif/shell/quickshell/Bar.qml +++ b/accounts/gkleen@sif/shell/quickshell/Bar.qml | |||
@@ -1,14 +1,11 @@ | |||
1 | import Quickshell | 1 | import Quickshell |
2 | import QtQuick | 2 | import QtQuick |
3 | 3 | ||
4 | |||
5 | PanelWindow { | 4 | PanelWindow { |
6 | id: bar | 5 | id: bar |
7 | 6 | ||
8 | required property var screen | 7 | required property var screen |
9 | 8 | ||
10 | property var calendarMouseArea: clock.calendarMouseArea | ||
11 | |||
12 | anchors { | 9 | anchors { |
13 | top: true | 10 | top: true |
14 | left: true | 11 | left: true |
@@ -66,22 +63,31 @@ PanelWindow { | |||
66 | anchors.verticalCenter: parent.verticalCenter | 63 | anchors.verticalCenter: parent.verticalCenter |
67 | spacing: 0 | 64 | spacing: 0 |
68 | 65 | ||
69 | SystemTray {} | 66 | PrivacyWidget { |
67 | id: privacy | ||
68 | } | ||
70 | 69 | ||
71 | Item { | 70 | Item { |
71 | enabled: privacy.active | ||
72 | height: parent.height | 72 | height: parent.height |
73 | width: 4 | 73 | width: 8 - 4 |
74 | } | 74 | } |
75 | 75 | ||
76 | BatteryWidget {} | ||
77 | |||
78 | BrightnessWidget {} | ||
79 | |||
80 | PipewireWidget {} | ||
81 | |||
82 | SystemTray {} | ||
83 | |||
76 | KeyboardLayout {} | 84 | KeyboardLayout {} |
77 | 85 | ||
78 | Item { | 86 | Item { |
79 | height: parent.height | 87 | height: parent.height |
80 | width: 4 | 88 | width: 8 - 4 |
81 | } | 89 | } |
82 | 90 | ||
83 | Clock { | 91 | Clock {} |
84 | id: clock | ||
85 | } | ||
86 | } | 92 | } |
87 | } \ No newline at end of file | 93 | } \ No newline at end of file |