From ad93617ee809040a3882fa1b82137f0a6e06f7d0 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Wed, 25 Jun 2025 00:17:52 +1000 Subject: internal: add env for beat detector path --- services/BeatDetector.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/BeatDetector.qml b/services/BeatDetector.qml index 65dd88e..7099435 100644 --- a/services/BeatDetector.qml +++ b/services/BeatDetector.qml @@ -10,7 +10,7 @@ Singleton { Process { running: true - command: ["/usr/lib/caelestia/beat_detector", "--no-log", "--no-stats", "--no-visual"] + command: [Quickshell.env("CAELESTIA_BD_PATH") || "/usr/lib/caelestia/beat_detector", "--no-log", "--no-stats", "--no-visual"] stdout: SplitParser { onRead: data => { const match = data.match(/BPM: ([0-9]+\.[0-9])/); -- cgit v1.2.3-freya