This commit is contained in:
Nico
2024-10-31 10:33:46 +01:00
commit ad6d893cb0
237 changed files with 19793 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import { NotificationPopups } from "./notificationPopups.js"
Utils.timeout(100, () => Utils.notify({
summary: "Notification Popup Example",
iconName: "info-symbolic",
body: "Lorem ipsum dolor sit amet, qui minim labore adipisicing "
+ "minim sint cillum sint consectetur cupidatat.",
actions: {
"Cool": () => print("pressed Cool"),
},
}))
App.config({
style: App.configDir + "/style.css",
windows: [
NotificationPopups(),
],
})