diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-13 17:06:21 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-13 17:06:21 +1000 |
| commit | 1656e5c3556fafd388510cd6728e064c802d9e25 (patch) | |
| tree | 701523457f71370a97ec952f2fd75e2ef266a4be /services/Drawers.qml | |
| parent | refactor: move to single window (diff) | |
| download | caelestia-shell-1656e5c3556fafd388510cd6728e064c802d9e25.tar.gz caelestia-shell-1656e5c3556fafd388510cd6728e064c802d9e25.tar.bz2 caelestia-shell-1656e5c3556fafd388510cd6728e064c802d9e25.zip | |
osd: show on hover
Diffstat (limited to 'services/Drawers.qml')
| -rw-r--r-- | services/Drawers.qml | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/services/Drawers.qml b/services/Drawers.qml deleted file mode 100644 index 7e7d97a..0000000 --- a/services/Drawers.qml +++ /dev/null @@ -1,34 +0,0 @@ -pragma Singleton - -import Quickshell -import QtQuick - -Singleton { - id: root - - property var visibilities: Quickshell.screens.reduce((acc, s) => { - acc[s] = visibleComp.createObject(root); - return acc; - }, {}) - - property var positions: ({}) - property int rightExclusion - - signal posChanged(screen: ShellScreen, x: int, y: int) - - function setPosForScreen(screen: ShellScreen, x: int, y: int): void { - positions[screen] = Qt.point(x, y); - posChanged(screen, x, y); - } - - Component { - id: visibleComp - - QtObject { - property bool launcher - property bool osd - property bool notifs - property bool session - } - } -} |