Files
illogical-impulse/dots/.config/quickshell/ii/modules/common/widgets/PointingHandLinkHover.qml
T
2025-10-16 07:19:55 +08:00

9 lines
213 B
QML

import QtQuick
MouseArea {
anchors.fill: parent
acceptedButtons: Qt.NoButton // Only for hover
hoverEnabled: true
cursorShape: parent.hoveredLink !== "" ? Qt.PointingHandCursor : Qt.ArrowCursor
}