aboutsummaryrefslogtreecommitdiff
path: root/quickshell
diff options
context:
space:
mode:
authorAargh Rai <aargh.rai+git@gmail.com>2026-04-16 11:43:29 +0530
committerAargh Rai <aargh.rai+git@gmail.com>2026-04-16 11:43:29 +0530
commitc57791d3b1cb8e6ae23e304ba08c55746c0b8013 (patch)
tree3a75b2c1a3aed11fe45d6dbe953eba1ab17af406 /quickshell
parent7af2a74fcb5fce4b35c2b3569206bc3f3477aad9 (diff)
calendar navigation + flake update + random other tools + no global postgres
Diffstat (limited to 'quickshell')
-rw-r--r--quickshell/AppLauncher.qml9
-rw-r--r--quickshell/Calendar.qml7
2 files changed, 7 insertions, 9 deletions
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