diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-07-10 12:59:10 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-07-10 12:59:10 +1000 |
| commit | 6eb216475658dda3f921b176ffd6740fc65784ce (patch) | |
| tree | 0a9e26048df28928399f14fa0359ad85b9bf78e9 /modules/utilities/Content.qml | |
| parent | lock: fix input dragging (diff) | |
| download | caelestia-shell-6eb216475658dda3f921b176ffd6740fc65784ce.tar.gz caelestia-shell-6eb216475658dda3f921b176ffd6740fc65784ce.tar.bz2 caelestia-shell-6eb216475658dda3f921b176ffd6740fc65784ce.zip | |
internal: add utilities panel base
Diffstat (limited to 'modules/utilities/Content.qml')
| -rw-r--r-- | modules/utilities/Content.qml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/modules/utilities/Content.qml b/modules/utilities/Content.qml new file mode 100644 index 0000000..9b26d1e --- /dev/null +++ b/modules/utilities/Content.qml @@ -0,0 +1,31 @@ +import "root:/widgets" +import "root:/services" +import "root:/config" +import Quickshell +import Quickshell.Widgets +import QtQuick + +Item { + id: root + + anchors.top: parent.top + anchors.bottom: parent.bottom + anchors.right: parent.right + + implicitWidth: 300 + implicitHeight: 100 + + // Rectangle { + // anchors.fill: parent + // } + + Behavior on implicitHeight { + Anim {} + } + + component Anim: NumberAnimation { + duration: Appearance.anim.durations.expressiveDefaultSpatial + easing.type: Easing.BezierSpline + easing.bezierCurve: Appearance.anim.curves.expressiveDefaultSpatial + } +} |