1
0
Fork 0

reload-popup: add example

This commit is contained in:
outfoxxed 2024-05-30 05:33:50 -07:00
parent 7d0bfb6b61
commit c30a4faf18
Signed by: outfoxxed
GPG key ID: 4C88A185FB89301E
5 changed files with 165 additions and 0 deletions

25
reload-popup/shell.qml Normal file
View file

@ -0,0 +1,25 @@
import QtQuick
import Quickshell
ShellRoot {
// Add the popup to the shell.
ReloadPopup {}
// The rest of your shell, in this case a very simple bar.
// Try editing this.
PanelWindow {
anchors {
left: true
top: true
right: true
}
height: 30
Text {
anchors.centerIn: parent
text: "I'm a bar!"
an error
}
}
}