diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2025-09-12 14:21:21 +0200 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2025-09-12 14:21:21 +0200 |
commit | 43af16801fcbb7056a51ed5fd6539c74ff5c0379 (patch) | |
tree | bbf61e0d0df1cac84c441afaddcb2184dc450181 /accounts/gkleen@sif/shell/quickshell/SystemTray.qml | |
parent | da23e39c353e68fdc7c5839d78945e88352a7f92 (diff) | |
download | nixos-43af16801fcbb7056a51ed5fd6539c74ff5c0379.tar nixos-43af16801fcbb7056a51ed5fd6539c74ff5c0379.tar.gz nixos-43af16801fcbb7056a51ed5fd6539c74ff5c0379.tar.bz2 nixos-43af16801fcbb7056a51ed5fd6539c74ff5c0379.tar.xz nixos-43af16801fcbb7056a51ed5fd6539c74ff5c0379.zip |
...
Diffstat (limited to 'accounts/gkleen@sif/shell/quickshell/SystemTray.qml')
-rw-r--r-- | accounts/gkleen@sif/shell/quickshell/SystemTray.qml | 43 |
1 files changed, 25 insertions, 18 deletions
diff --git a/accounts/gkleen@sif/shell/quickshell/SystemTray.qml b/accounts/gkleen@sif/shell/quickshell/SystemTray.qml index 351e74ee..f7b4ed96 100644 --- a/accounts/gkleen@sif/shell/quickshell/SystemTray.qml +++ b/accounts/gkleen@sif/shell/quickshell/SystemTray.qml | |||
@@ -155,32 +155,39 @@ Item { | |||
155 | hoverEnabled: true | 155 | hoverEnabled: true |
156 | enabled: true | 156 | enabled: true |
157 | 157 | ||
158 | margin: 8 | 158 | margin: 4 |
159 | 159 | ||
160 | Column { | 160 | anchors.fill: parent |
161 | Text { | ||
162 | id: tooltipTitle | ||
163 | 161 | ||
164 | enabled: trayItem.tooltipTitle | 162 | Item { |
163 | anchors.fill: parent | ||
165 | 164 | ||
166 | font.pointSize: 10 | 165 | Column { |
167 | font.family: "Fira Sans" | 166 | anchors.centerIn: parent |
168 | font.bold: true | 167 | Text { |
169 | color: "white" | 168 | id: tooltipTitle |
170 | 169 | ||
171 | text: trayItem.tooltipTitle | 170 | enabled: trayItem.tooltipTitle |
172 | } | ||
173 | 171 | ||
174 | Text { | 172 | font.pointSize: 10 |
175 | id: tooltipDescription | 173 | font.family: "Fira Sans" |
174 | font.bold: true | ||
175 | color: "white" | ||
176 | 176 | ||
177 | enabled: trayItem.tooltipDescription | 177 | text: trayItem.tooltipTitle |
178 | } | ||
179 | |||
180 | Text { | ||
181 | id: tooltipDescription | ||
178 | 182 | ||
179 | font.pointSize: 10 | 183 | enabled: trayItem.tooltipDescription |
180 | font.family: "Fira Sans" | ||
181 | color: "white" | ||
182 | 184 | ||
183 | text: trayItem.tooltipDescription | 185 | font.pointSize: 10 |
186 | font.family: "Fira Sans" | ||
187 | color: "white" | ||
188 | |||
189 | text: trayItem.tooltipDescription | ||
190 | } | ||
184 | } | 191 | } |
185 | } | 192 | } |
186 | } | 193 | } |