diff options
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 |
