summaryrefslogtreecommitdiff
path: root/modules/background
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-09-09 16:31:02 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-09-09 16:31:02 +1000
commit6ae1a8e811f72bda251f8718fb148fcb6853bcc4 (patch)
tree4b4018628c9cc32a7f43a4a0d17b091eb852db2c /modules/background
parentnix: fix build error with libcava (#585) (diff)
downloadcaelestia-shell-6ae1a8e811f72bda251f8718fb148fcb6853bcc4.tar.gz
caelestia-shell-6ae1a8e811f72bda251f8718fb148fcb6853bcc4.tar.bz2
caelestia-shell-6ae1a8e811f72bda251f8718fb148fcb6853bcc4.zip
plugin/ac: not singleton
Also add nodeId prop BeatTracker not singleton Move BeatTracker and Cava to Audio service
Diffstat (limited to 'modules/background')
-rw-r--r--modules/background/Visualiser.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/background/Visualiser.qml b/modules/background/Visualiser.qml
index a8ada1e..ad726cc 100644
--- a/modules/background/Visualiser.qml
+++ b/modules/background/Visualiser.qml
@@ -16,7 +16,7 @@ Item {
required property Wallpaper wallpaper
ServiceRef {
- service: Cava.provider
+ service: Audio.cava
}
MultiEffect {
@@ -65,7 +65,7 @@ Item {
id: bar
required property int modelData
- property real value: Math.max(0, Math.min(1, Cava.values[side.isRight ? modelData : side.count - modelData - 1]))
+ property real value: Math.max(0, Math.min(1, Audio.cava.values[side.isRight ? modelData : side.count - modelData - 1]))
clip: true