summaryrefslogtreecommitdiff
path: root/services
diff options
context:
space:
mode:
Diffstat (limited to 'services')
-rw-r--r--services/BeatDetector.qml2
1 files changed, 1 insertions, 1 deletions
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])/);