mirror of
https://github.com/danbulant/dots-hyprland
synced 2026-05-24 12:22:09 +00:00
background: comment debug stuff
This commit is contained in:
parent
3eb1dd3180
commit
553c42b82c
1 changed files with 2 additions and 3 deletions
|
|
@ -120,7 +120,6 @@ Variants {
|
|||
leastBusyRegionProc.horizontalPadding = bgRoot.movableXSpace + 100
|
||||
leastBusyRegionProc.verticalPadding = bgRoot.movableYSpace + 100
|
||||
leastBusyRegionProc.running = false;
|
||||
console.log(leastBusyRegionProc.command.join(" "))
|
||||
leastBusyRegionProc.running = true;
|
||||
}
|
||||
Process {
|
||||
|
|
@ -138,13 +137,13 @@ Variants {
|
|||
"--horizontal-padding", horizontalPadding,
|
||||
"--vertical-padding", verticalPadding,
|
||||
path,
|
||||
"--visual-output",
|
||||
// "--visual-output",
|
||||
]
|
||||
stdout: StdioCollector {
|
||||
id: leastBusyRegionOutputCollector
|
||||
onStreamFinished: {
|
||||
const output = leastBusyRegionOutputCollector.text
|
||||
console.log("[Background] Least busy region output:", output)
|
||||
// console.log("[Background] Least busy region output:", output)
|
||||
if (output.length === 0) return;
|
||||
const parsedContent = JSON.parse(output)
|
||||
bgRoot.clockX = parsedContent.center_x * bgRoot.effectiveWallpaperScale
|
||||
|
|
|
|||
Loading…
Reference in a new issue