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
cleanup() {
qs ipc call overview close >/dev/null 2>&1 || true
}
trap cleanup EXIT
qs ipc show | rg -A8 '^target overview$' | rg -q 'function search\(query: string\): void'
qs ipc call overview search ChatGPT >/dev/null
for _ in $(seq 1 20); do
if hyprctl layers | rg -q 'namespace: qs-overview'; then
printf 'overview-search contract: PASS\n'
exit 0
fi
sleep 0.1
done
printf 'overview-search contract: overview did not map\n' >&2
exit 1