Initial release: z13Profiler GUI for unified memory on GZ302.

Adds zenity profile picker (gaming / LLM / reset) with safe RAM
guardrails, pkexec-based apply, and install.sh for Nobara/Fedora.

Co-authored-by: Cursor <[email protected]>
This commit is contained in:
2026-06-24 23:30:48 -05:00
co-authored by Cursor
commit d5a7f9feeb
7 changed files with 724 additions and 0 deletions
Executable
+23
View File
@@ -0,0 +1,23 @@
#!/usr/bin/env bash
# Build a transferable tarball of z13-memory-profiles
set -euo pipefail
ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
NAME="z13Profiler"
VERSION="1.0.0"
OUT="$(cd "${ROOT}/.." && pwd)/${NAME}-${VERSION}.tar.gz"
cd "${ROOT}/.."
tar -czf "${OUT}" \
--exclude='*.tar.gz' \
--exclude='.git' \
"${NAME}/"
echo "Created: ${OUT}"
echo ""
echo "Transfer to Z13 (USB, scp, etc.), then on the tablet:"
echo " tar -xzf ${NAME}-${VERSION}.tar.gz"
echo " cd ${NAME}"
echo " ./install.sh"
echo " z13-memory-profiles"