diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-15 15:43:50 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-15 15:43:50 +1000 |
| commit | 05e9561fd687c15baba56fc9eeca9a29b504abd2 (patch) | |
| tree | a739b82c81d38727fe69c4c541a0509a75f15a8d /widgets/CachingImage.qml | |
| parent | colours: more fixes for cli rewrite (diff) | |
| download | caelestia-shell-05e9561fd687c15baba56fc9eeca9a29b504abd2.tar.gz caelestia-shell-05e9561fd687c15baba56fc9eeca9a29b504abd2.tar.bz2 caelestia-shell-05e9561fd687c15baba56fc9eeca9a29b504abd2.zip | |
internal: use stdiocollector
Removes dependency on jq
Also fix beatdetector
Diffstat (limited to 'widgets/CachingImage.qml')
| -rw-r--r-- | widgets/CachingImage.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/widgets/CachingImage.qml b/widgets/CachingImage.qml index 3382615..8f7f711 100644 --- a/widgets/CachingImage.qml +++ b/widgets/CachingImage.qml @@ -43,8 +43,8 @@ Image { property string path command: ["sha256sum", path] - stdout: SplitParser { - onRead: data => root.hash = data.split(" ")[0] + stdout: StdioCollector { + onStreamFinished: root.hash = text.split(" ")[0] } } } |