File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Reload Popup
2
2
3
- A popup in the corner of the screen that appears when hot reloading the configuration,
4
- which you can easily add to an existing shell.
3
+ Replaces the standard quickshell config reload popup.
5
4
6
5
You can try it out by running ` quickshell -p shell.qml ` which will put a simple bar
7
6
on the screen. The popup will appear if the file is edited, and display the error
Original file line number Diff line number Diff line change @@ -12,11 +12,13 @@ Scope {
12
12
target: Quickshell
13
13
14
14
function onReloadCompleted () {
15
+ Quickshell .inhibitReloadPopup ();
15
16
root .failed = false ;
16
17
popupLoader .loading = true ;
17
18
}
18
19
19
20
function onReloadFailed (error : string ) {
21
+ Quickshell .inhibitReloadPopup ();
20
22
// Close any existing popup before making a new one.
21
23
popupLoader .active = false ;
22
24
You can’t perform that action at this time.
0 commit comments