Files
quickshell/shell.qml
T
2026-07-17 19:57:48 +00:00

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()
}
}