diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-18 00:23:21 +0800 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-18 00:23:21 +0800 |
| commit | 086c5c9f0239b230d75c8365da0ab365bafaf0c1 (patch) | |
| tree | 43032550fc7c74b337f108f3a53de7e9e5dd9bc7 /modules/dashboard/Dash.qml | |
| parent | dashboard: fill current tab icon (diff) | |
| download | caelestia-shell-086c5c9f0239b230d75c8365da0ab365bafaf0c1.tar.gz caelestia-shell-086c5c9f0239b230d75c8365da0ab365bafaf0c1.tar.bz2 caelestia-shell-086c5c9f0239b230d75c8365da0ab365bafaf0c1.zip | |
feat: dashboard user
Diffstat (limited to 'modules/dashboard/Dash.qml')
| -rw-r--r-- | modules/dashboard/Dash.qml | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/modules/dashboard/Dash.qml b/modules/dashboard/Dash.qml index 66af8cb..1631287 100644 --- a/modules/dashboard/Dash.qml +++ b/modules/dashboard/Dash.qml @@ -1,7 +1,7 @@ import "root:/widgets" import "root:/services" import "root:/config" -import Quickshell +import "dash" import QtQuick.Layouts GridLayout { @@ -11,11 +11,9 @@ GridLayout { columnSpacing: Appearance.spacing.small Rect { - text: "user" - Layout.columnSpan: 3 - Layout.preferredWidth: 300 - Layout.preferredHeight: 150 + + User {} } Rect { @@ -65,7 +63,7 @@ GridLayout { } component Rect: StyledRect { - required property string text + property string text radius: Appearance.rounding.small color: Colours.palette.m3surfaceContainer |