summaryrefslogtreecommitdiff
path: root/services
diff options
context:
space:
mode:
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
- }
- }
-}