41 lines
778 B
QML
41 lines
778 B
QML
//@ pragma UseQApplication
|
|
|
|
import Quickshell //for PanelWindow
|
|
import Quickshell.Hyprland
|
|
import QtQuick //for Text
|
|
import Quickshell.Services.Notifications
|
|
import "./modules/bar"
|
|
import "./modules/wp"
|
|
import "./modules/wlogout"
|
|
import "./modules/jl"
|
|
import "./modules/background"
|
|
import "./modules/notifications"
|
|
|
|
ShellRoot {
|
|
id: root
|
|
|
|
// Notifications
|
|
NotificationManager { id: notificationManager }
|
|
|
|
NotificationPopup { manager: notificationManager }
|
|
|
|
// Bar
|
|
BarLoader { manager: notificationManager }
|
|
|
|
//Wallpaper picker
|
|
WallpaperPickerLoader {}
|
|
|
|
//Japanese Lerner
|
|
JLearnerLoader {}
|
|
|
|
//Wlogout
|
|
WlogoutLoader {
|
|
id : wlLoader
|
|
}
|
|
|
|
Background {}
|
|
|
|
function openWlogout() {
|
|
wlLoader.openWlogout()
|
|
}
|
|
} |