mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-07-03 05:57:29 -05:00
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
|
|
}
|
|
}
|