summaryrefslogtreecommitdiff
path: root/services
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-13 17:06:21 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-13 17:06:21 +1000
commit1656e5c3556fafd388510cd6728e064c802d9e25 (patch)
tree701523457f71370a97ec952f2fd75e2ef266a4be /services
parentrefactor: move to single window (diff)
downloadcaelestia-shell-1656e5c3556fafd388510cd6728e064c802d9e25.tar.gz
caelestia-shell-1656e5c3556fafd388510cd6728e064c802d9e25.tar.bz2
caelestia-shell-1656e5c3556fafd388510cd6728e064c802d9e25.zip
osd: show on hover
Diffstat (limited to 'services')
-rw-r--r--services/Drawers.qml34
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
- }
- }
-}