bazzite-xmb/qml/Main.qml
2026-01-14 16:02:23 +01:00

35 lines
622 B
QML

import QtQuick
import QtQuick.Window
import QtQuick.Controls
import XMB 1.0
Window {
id: win
width: 1280
height: 720
visible: true
color: "#0b1020"
title: "XMB Frontend"
// Fullscreen optional per CLI; QML bleibt kompatibel mit Gamescope.
// win.visibility = Window.FullScreen
BootLoader {
id: boot
anchors.fill: parent
onFinished: stack.currentIndex = 1
}
StackLayout {
id: stack
anchors.fill: parent
currentIndex: 0
Item { } // Boot placeholder
XmbRoot {
anchors.fill: parent
}
}
}