From e3e5a7e1d52da75e360ec718f863d7d9007c658a Mon Sep 17 00:00:00 2001 From: Kiana Sheibani Date: Tue, 11 Nov 2025 00:48:22 -0500 Subject: [PATCH] feat!: change behavior of dashboard keybinding --- modules/Commands.qml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/modules/Commands.qml b/modules/Commands.qml index cdf3aee..b58e020 100644 --- a/modules/Commands.qml +++ b/modules/Commands.qml @@ -103,10 +103,14 @@ Scope { CustomShortcut { name: "dashboard" - description: "Toggle dashboard" + description: "Cycle dashboard tabs" onPressed: { const uiState = States.getForActive(); - uiState.dashboard = !uiState.dashboard; + if (uiState.dashboard) { + uiState.dashboardTab = (uiState.dashboardTab + 1) % 5; + } else { + uiState.dashboard = true; + } } }