From c57791d3b1cb8e6ae23e304ba08c55746c0b8013 Mon Sep 17 00:00:00 2001 From: Aargh Rai Date: Thu, 16 Apr 2026 11:43:29 +0530 Subject: calendar navigation + flake update + random other tools + no global postgres --- quickshell/AppLauncher.qml | 9 --------- quickshell/Calendar.qml | 7 +++++++ 2 files changed, 7 insertions(+), 9 deletions(-) (limited to 'quickshell') diff --git a/quickshell/AppLauncher.qml b/quickshell/AppLauncher.qml index a4f1ffd..f903f1f 100644 --- a/quickshell/AppLauncher.qml +++ b/quickshell/AppLauncher.qml @@ -67,15 +67,6 @@ Rectangle { const parts = line.split('|'); if (parts.length < 4) continue; - if (parts[0].toLowerCase().includes("zen")) { - apps.push({ - appName: "Zen browser", - appDescription: "it's zen", - appIcon: "nigga", - appCommand: "zen" - }); - } - apps.push({ appName: parts[0], appDescription: parts[1], diff --git a/quickshell/Calendar.qml b/quickshell/Calendar.qml index 0b79553..1ad3c15 100644 --- a/quickshell/Calendar.qml +++ b/quickshell/Calendar.qml @@ -18,6 +18,13 @@ Rectangle { monthOffset = 0; requestClose() } + Keys.onPressed: (event) => { + if (event.key == Qt.Key_Comma) { + monthOffset--; + } else if (event.key == Qt.Key_Period) { + monthOffset++; + } + } Column { anchors.fill: parent -- cgit v1.2.3