37 lines
761 B
QML
37 lines
761 B
QML
import Quickshell
|
|
import QtQuick
|
|
|
|
FloatingWindow {
|
|
title: "System Info"
|
|
color: "#000000"
|
|
visible: true
|
|
minimumSize: Qt.size(824, 497)
|
|
maximumSize: Qt.size(824, 497)
|
|
|
|
Text {
|
|
text: "System Info"
|
|
color: "#ffc90e"
|
|
font.family: "8bitoperator JVE"
|
|
font.pixelSize: 32
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
y: 15
|
|
}
|
|
|
|
Image {
|
|
source: "./Delta_Rune.png"
|
|
scale: 0.5
|
|
y: 15
|
|
x: 0
|
|
}
|
|
|
|
Text {
|
|
// TODO: get system info not static
|
|
text: "CachyOS\nLinux 6.18.2-1-cachyos-rt-bore-lto\nHyprland 0.52.0-git"
|
|
color: "#ffffff"
|
|
font.family: "8bitoperator JVE"
|
|
font.pixelSize: 32
|
|
y: 75
|
|
x: 320
|
|
}
|
|
}
|