chore: stuff

This commit is contained in:
2026-01-23 23:12:15 +02:00
parent 5e603eeef9
commit 2c32b17b16
23 changed files with 176 additions and 29 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 378 KiB

View File

@@ -0,0 +1,36 @@
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
}
}