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 /modules/bar/components | |
| 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 'modules/bar/components')
| -rw-r--r-- | modules/bar/components/TrayItem.qml | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/modules/bar/components/TrayItem.qml b/modules/bar/components/TrayItem.qml index b7ffdec..5ce45ee 100644 --- a/modules/bar/components/TrayItem.qml +++ b/modules/bar/components/TrayItem.qml @@ -1,5 +1,6 @@ pragma ComponentBehavior: Bound +import "root:/widgets" import "root:/config" import Quickshell import Quickshell.Widgets @@ -53,18 +54,9 @@ MouseArea { active: BarConfig.tray.recolourIcons asynchronous: true - sourceComponent: MultiEffect { + sourceComponent: Colouriser { source: icon colorizationColor: root.colour - colorization: 1 - - Behavior on colorizationColor { - ColorAnimation { - duration: Appearance.anim.durations.normal - easing.type: Easing.BezierSpline - easing.bezierCurve: Appearance.anim.curves.standard - } - } } } } |