forked from Shinonome/dots-hyprland
17 lines
309 B
QML
17 lines
309 B
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import Quickshell
|
|
import qs.modules.common
|
|
import qs.modules.overlay
|
|
|
|
StyledOverlayWidget {
|
|
id: root
|
|
title: "Stickypad"
|
|
showCenterButton: true
|
|
|
|
contentItem: StickypadContent {
|
|
anchors.fill: parent
|
|
isClickthrough: root.clickthrough
|
|
}
|
|
}
|