From 67b7245bf96cf954d90719e800cf9618ffaa4feb Mon Sep 17 00:00:00 2001 From: Leander Scherer Date: Mon, 29 Jun 2026 21:08:42 +0200 Subject: chore: cleanup sway, quickshell --- modules/system/quickshell/shell.qml | 67 ------------------------------------- 1 file changed, 67 deletions(-) delete mode 100644 modules/system/quickshell/shell.qml (limited to 'modules/system/quickshell/shell.qml') 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; - } - } -} -- cgit v1.3.1