Build the Panama Hyprland desktop

This commit is contained in:
Gabriel Brown
2026-08-17 10:32:55 -04:00
parent 67033f2a31
commit 5248883e4b
190 changed files with 18554 additions and 34 deletions
+22
View File
@@ -0,0 +1,22 @@
#!/usr/bin/env bash
set -euo pipefail
repo_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)"
body="$repo_dir/config/dot/quickshell/modules/overview/OverviewBody.qml"
thumbnail="$repo_dir/config/dot/quickshell/modules/overview/WindowThumbnail.qml"
fail() {
printf 'overview-keyboard contract: %s\n' "$1" >&2
exit 1
}
rg -q 'Keys\.onLeftPressed' "$body" || fail 'Left does not navigate workspaces'
rg -q 'Keys\.onRightPressed' "$body" || fail 'Right does not navigate workspaces'
rg -q 'Keys\.onUpPressed' "$body" || fail 'Up does not navigate search results'
rg -q 'Keys\.onDownPressed' "$body" || fail 'Down does not navigate search results'
rg -q 'Keys\.onDeletePressed' "$body" || fail 'Delete cannot close the selected search result'
rg -q 'selectedResultIndex' "$body" || fail 'search results have no keyboard selection model'
rg -q 'property bool selected' "$thumbnail" || fail 'thumbnail cannot render keyboard selection'
printf 'overview-keyboard contract: PASS\n'