diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-10 17:31:04 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-10 17:31:04 +1000 |
| commit | 6b64c8a91804058fea99ed6944753758ee92c543 (patch) | |
| tree | 9bf1d152c1f7e2135515e8302c93821d3e29b184 /widgets | |
| parent | launcher: better style (diff) | |
| download | caelestia-shell-6b64c8a91804058fea99ed6944753758ee92c543.tar.gz caelestia-shell-6b64c8a91804058fea99ed6944753758ee92c543.tar.bz2 caelestia-shell-6b64c8a91804058fea99ed6944753758ee92c543.zip | |
feat: basic notifications
Also fix pixel issue with notif area background
Add more log rules to run script
Diffstat (limited to 'widgets')
| -rw-r--r-- | widgets/Colouriser.qml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/widgets/Colouriser.qml b/widgets/Colouriser.qml new file mode 100644 index 0000000..3c06f5a --- /dev/null +++ b/widgets/Colouriser.qml @@ -0,0 +1,15 @@ +import "root:/config" +import QtQuick +import QtQuick.Effects + +MultiEffect { + colorization: 1 + + Behavior on colorizationColor { + ColorAnimation { + duration: Appearance.anim.durations.normal + easing.type: Easing.BezierSpline + easing.bezierCurve: Appearance.anim.curves.standard + } + } +} |