lux-shell/modules/Shell.qml
Benjamin Palko 0a33022c6a simple dashboard
only has mpris
2025-08-27 16:10:42 -04:00

25 lines
384 B
QML

import "bar"
import "drawers"
import "launcher"
import "pomodoro"
import "powermenu"
import "storybook"
import Quickshell
import QtQuick
Variants {
model: Quickshell.screens
Scope {
id: scope
required property ShellScreen modelData
Bar {}
Launcher {}
Pomodoro {}
PowerMenu {}
Storybook {}
Drawers {}
}
}