forked from Shinonome/dots-hyprland
19 lines
442 B
QML
19 lines
442 B
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import Quickshell
|
|
import qs.modules.common
|
|
import qs.modules.overlay
|
|
|
|
StyledOverlayWidget {
|
|
id: root
|
|
fancyBorders: false // Crosshair should be see-through
|
|
showCenterButton: true
|
|
opacity: 1 // The crosshair itself already has transparency if configured
|
|
showClickabilityButton: false
|
|
clickthrough: true
|
|
|
|
contentItem: CrosshairContent {
|
|
anchors.centerIn: parent
|
|
}
|
|
}
|