Files
quickshell/Components/CenteredText.qml
2026-06-14 15:01:16 +01:00

15 lines
249 B
QML

import QtQuick
import "../Color.js" as Colors
Text {
anchors.horizontalCenter: parent.horizontalCenter
anchors.verticalCenter: parent.verticalCenter
color: Colors.base
font {
family: "FiraMono Nerd Font"
pointSize: 12
weight: 600
}
}