quickshell/reusables/CustomIcon.qml

17 lines
383 B
QML
Raw Normal View History

2026-01-16 14:44:10 +01:00
import QtQuick
import qs.settings
import qs
2026-01-16 14:44:10 +01:00
Text {
property real fill: 1
2026-01-19 15:17:57 +01:00
anchors.verticalCenter: parent.verticalCenter
font.family: "Material Icons Round"
2026-01-16 14:44:10 +01:00
color: Colors.foreground
2026-01-16 15:15:44 +01:00
font.variableAxes: ({
FILL: fill.toFixed(1),
GRAD: -25,
opsz: Settings.config.fontSize,
wght: Settings.config.fontWeight
2026-01-16 15:15:44 +01:00
})
2026-01-16 14:44:10 +01:00
}