aboutsummaryrefslogtreecommitdiff
path: root/modules/system/quickshell/shell.qml
diff options
context:
space:
mode:
authorLeander Scherer <leander@schererleander.de>2026-06-29 21:08:42 +0200
committerLeander Scherer <leander@schererleander.de>2026-06-29 21:22:33 +0200
commit67b7245bf96cf954d90719e800cf9618ffaa4feb (patch)
tree2723c3db278840150985cdc630487ff175d330d9 /modules/system/quickshell/shell.qml
parentd4fa3d0533c8dac688e38413403815de1802339e (diff)
chore: cleanup sway, quickshell
Diffstat (limited to 'modules/system/quickshell/shell.qml')
-rw-r--r--modules/system/quickshell/shell.qml67
1 files changed, 0 insertions, 67 deletions
diff --git a/modules/system/quickshell/shell.qml b/modules/system/quickshell/shell.qml
deleted file mode 100644
index bee997c..0000000
--- a/modules/system/quickshell/shell.qml
+++ /dev/null
@@ -1,67 +0,0 @@
-//@ pragma UseQApplication
-import Quickshell
-import QtQuick
-import Quickshell.Io
-import Quickshell.Wayland
-
-ShellRoot {
- Component.onCompleted: {
- Qt.application.font.family = "Inter";
- Qt.application.font.hintingPreference = Font.PreferNoHinting;
- Qt.application.font.styleStrategy = Font.NoSubpixelAntialias;
- }
-
- Variants {
- model: Quickshell.screens
-
- Bar {
- required property var modelData
- screen: modelData
- }
- }
-
- Variants {
- model: Quickshell.screens
-
- Background {
- required property var modelData
- screen: modelData
- }
- }
-
- Notifications {}
-
- VolumeOSD {}
- Polkit {}
- Launcher {}
-
- LockContext {
- id: lockContext
- onUnlocked: {
- sessionLock.locked = false;
- }
- }
-
- WlSessionLock {
- id: sessionLock
-
- WlSessionLockSurface {
- LockSurface {
- anchors.fill: parent
- context: lockContext
- }
- }
- }
-
- IpcHandler {
- target: "bar"
- function toggleLauncher() {
- GlobalState.toggle("Launcher");
- }
-
- function lock() {
- lockContext.reset();
- sessionLock.locked = true;
- }
- }
-}