diff options
| author | Aargh Rai <aargh.rai+git@gmail.com> | 2026-04-16 11:43:29 +0530 |
|---|---|---|
| committer | Aargh Rai <aargh.rai+git@gmail.com> | 2026-04-16 11:43:29 +0530 |
| commit | c57791d3b1cb8e6ae23e304ba08c55746c0b8013 (patch) | |
| tree | 3a75b2c1a3aed11fe45d6dbe953eba1ab17af406 /quickshell | |
| parent | 7af2a74fcb5fce4b35c2b3569206bc3f3477aad9 (diff) | |
calendar navigation + flake update + random other tools + no global postgres
Diffstat (limited to 'quickshell')
| -rw-r--r-- | quickshell/AppLauncher.qml | 9 | ||||
| -rw-r--r-- | quickshell/Calendar.qml | 7 |
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 |
