mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-07-04 06:27:30 -05:00
20 lines
463 B
QML
20 lines
463 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
|
|
resizable: false
|
|
|
|
contentItem: CrosshairContent {
|
|
anchors.centerIn: parent
|
|
}
|
|
}
|