init: working version

This commit is contained in:
Kiana Sheibani 2025-10-07 19:43:46 -04:00
commit 7d8d7dacae
Signed by: toki
GPG key ID: 6CB106C25E86A9F7
109 changed files with 15066 additions and 0 deletions

32
custom/MaterialIcon.qml Normal file
View file

@ -0,0 +1,32 @@
import qs.config
import QtQuick
CustomText {
id: root
property real fill
property int grade: -25
property bool animateAxes: true
Behavior on font.variableAxes {
enabled: root.animateAxes && root.animate
SequentialAnimation {
PauseAnimation {
duration: root.animateDuration / 2
}
PropertyAction {}
}
}
color: Config.colors.secondary
animateProp: "scale"
font.family: "Material Symbols Rounded"
font.pointSize: Config.font.size.normal
font.variableAxes: ({
FILL: fill,
GRAD: grade,
opsz: fontInfo.pixelSize,
wght: fontInfo.weight
})
}