quickshell/reusables/CustomIcon.qml
2026-02-01 01:24:57 +01:00

18 lines
400 B
QML

import QtQuick
import qs.settings
import qs
Text {
property bool fill: false
anchors.verticalCenter: parent.verticalCenter
font.family: "Material Symbols Rounded"
color: Colors.onSurfaceColor
font.pixelSize: Settings.config.fontSize + 4
font.variableAxes: ({
FILL: fill,
GRAD: 100,
opsz: fill ? 48 : 20,
wght: 400
})
}