quickshell/ActivateLinux.qml
2025-09-09 12:03:05 +02:00

58 lines
866 B
QML

import QtQuick
import QtQuick.Layouts
import Quickshell
import Quickshell.Wayland
import "root:/bar"
PanelWindow {
id: activateLinux
required property ShellScreen modelData
screen: modelData
anchors {
right: true
bottom: true
}
margins {
right: 50
bottom: 50
}
implicitWidth: content.width
implicitHeight: content.height
color: "transparent"
// Give the window an empty click mask so all clicks pass through it.
mask: Region {}
// Use the wlroots specific layer property to ensure it displays over
// fullscreen windows.
WlrLayershell.layer: WlrLayer.Overlay
Pill {
Text {
text: "Ahhh"
}
}
ColumnLayout {
id: content
Text {
text: "Activate Linux"
color: "#50ffffff"
font.pointSize: 22
}
Text {
text: "Go to Settings to activate Linux"
color: "#50ffffff"
font.pointSize: 14
}
}
}