Temporary notification pop fix

This commit is contained in:
ly-sec 2025-07-20 12:00:53 +02:00
parent 1137b5a754
commit 695fa3b8df

View file

@ -94,4 +94,18 @@ Scope {
target: Quickshell
}
Timer {
id: reloadTimer
interval: 500 // ms
repeat: false
onTriggered: Quickshell.reload(true)
}
Connections {
target: Quickshell
function onScreensChanged() {
reloadTimer.restart();
}
}
}