From 774796ada20bca5c1cf6380c1df7ac955f30940a Mon Sep 17 00:00:00 2001 From: Kangheng Liu <72962885+kanghengliu@users.noreply.github.com> Date: Tue, 23 Jun 2026 23:06:38 -0400 Subject: [PATCH] launcher: add ctrl+H/L navigation in grid mode (#2688) --- .../Modals/DankLauncherV2/LauncherContent.qml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/quickshell/Modals/DankLauncherV2/LauncherContent.qml b/quickshell/Modals/DankLauncherV2/LauncherContent.qml index 588415c2..af5276f1 100644 --- a/quickshell/Modals/DankLauncherV2/LauncherContent.qml +++ b/quickshell/Modals/DankLauncherV2/LauncherContent.qml @@ -219,6 +219,24 @@ FocusScope { } event.accepted = false; return; + case Qt.Key_L: + if (hasCtrl) { + if (controller.getCurrentSectionViewMode() !== "list") { + controller.selectRight(); + } + return; + } + event.accepted = false; + return; + case Qt.Key_H: + if (hasCtrl) { + if (controller.getCurrentSectionViewMode() !== "list") { + controller.selectLeft(); + } + return; + } + event.accepted = false; + return; case Qt.Key_N: if (hasCtrl) { controller.selectNextSection();