quickshell/Icons.qml

17 lines
356 B
QML
Raw Normal View History

2025-12-31 15:59:41 +01:00
import QtQuick
import "./modules/settings/"
Text {
property real fill
font.family: "Material Symbols Rounded"
property int grade: 20
color: Colors.foreground
font.pixelSize: 14
2025-12-31 15:59:41 +01:00
font.variableAxes: ({
FILL: fill.toFixed(1),
GRAD: grade,
opsz: Settings.fontSize,
wght: 500
2025-12-31 15:59:41 +01:00
})
}