diff options
Diffstat (limited to 'services/BeatDetector.qml')
| -rw-r--r-- | services/BeatDetector.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/BeatDetector.qml b/services/BeatDetector.qml index 66bf2d4..196d40c 100644 --- a/services/BeatDetector.qml +++ b/services/BeatDetector.qml @@ -10,7 +10,7 @@ Singleton { Process { running: true - command: [`${Quickshell.shellRoot}/assets/realtime-beat-detector.py`] + command: [`${Quickshell.configDir}/assets/realtime-beat-detector.py`] stdout: SplitParser { onRead: data => root.bpm = parseFloat(data) } |