Temporary notification pop fix
This commit is contained in:
parent
1137b5a754
commit
695fa3b8df
1 changed files with 14 additions and 0 deletions
14
shell.qml
14
shell.qml
|
|
@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue