mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-05 14:59:27 -05:00
14 lines
341 B
QML
14 lines
341 B
QML
import QtQuick
|
|
import Quickshell
|
|
import qs.modules.common
|
|
|
|
/*
|
|
* Abstract widgets for an overlay. Doesn't contain any visuals.
|
|
*/
|
|
AbstractWidget {
|
|
id: root
|
|
|
|
property bool pinned: false // Whether to stay visible when the overlay is dismissed
|
|
property bool clickthrough: true // When pinned, whether to allow clicks go through
|
|
}
|