35 lines
622 B
QML
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
|
|
}
|
|
}
|
|
}
|