diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-05 22:13:27 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-05 22:13:27 +1000 |
| commit | ded156f58d0a23b3926e9dbbbc5ed2a7d1d4c0c7 (patch) | |
| tree | 0b8c91faf8079382ab37e7c07680bc77efbdb4f1 /services | |
| parent | feat: network popout (diff) | |
| download | caelestia-shell-ded156f58d0a23b3926e9dbbbc5ed2a7d1d4c0c7.tar.gz caelestia-shell-ded156f58d0a23b3926e9dbbbc5ed2a7d1d4c0c7.tar.bz2 caelestia-shell-ded156f58d0a23b3926e9dbbbc5ed2a7d1d4c0c7.zip | |
feat: bluetooth popout
Diffstat (limited to 'services')
| -rw-r--r-- | services/Popouts.qml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/services/Popouts.qml b/services/Popouts.qml index fa5b2d6..b7ef5f8 100644 --- a/services/Popouts.qml +++ b/services/Popouts.qml @@ -1,5 +1,6 @@ pragma Singleton +import "root:/config" import Quickshell import QtQuick @@ -7,4 +8,12 @@ Singleton { property string currentName property real currentCenter property bool hasCurrent + + Behavior on currentCenter { + NumberAnimation { + duration: Appearance.anim.durations.normal + easing.type: Easing.BezierSpline + easing.bezierCurve: Appearance.anim.curves.emphasized + } + } } |