From d2747e2ca1e211a32e91e44010f40a00e0ac97e4 Mon Sep 17 00:00:00 2001 From: Leander Scherer Date: Sat, 30 May 2026 15:35:27 +0200 Subject: feat(quickshell): add popup controls and privacy indicators --- modules/system/quickshell/shell.qml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'modules/system/quickshell/shell.qml') diff --git a/modules/system/quickshell/shell.qml b/modules/system/quickshell/shell.qml index a61edad..bee997c 100644 --- a/modules/system/quickshell/shell.qml +++ b/modules/system/quickshell/shell.qml @@ -6,9 +6,9 @@ import Quickshell.Wayland ShellRoot { Component.onCompleted: { - Qt.application.font.family = "Inter" - Qt.application.font.hintingPreference = Font.PreferNoHinting - Qt.application.font.styleStrategy = Font.NoSubpixelAntialias + Qt.application.font.family = "Inter"; + Qt.application.font.hintingPreference = Font.PreferNoHinting; + Qt.application.font.styleStrategy = Font.NoSubpixelAntialias; } Variants { @@ -44,7 +44,7 @@ ShellRoot { WlSessionLock { id: sessionLock - + WlSessionLockSurface { LockSurface { anchors.fill: parent @@ -56,13 +56,12 @@ ShellRoot { IpcHandler { target: "bar" function toggleLauncher() { - GlobalState.toggle("Launcher") + GlobalState.toggle("Launcher"); } function lock() { lockContext.reset(); - sessionLock.locked = true + sessionLock.locked = true; } } } - -- cgit v1.3.1