From 1491aef30e0bcffd46d7ddc32684ebb9bcda18ad Mon Sep 17 00:00:00 2001 From: clement Date: Tue, 30 Jun 2026 22:49:41 +0200 Subject: [PATCH] feat(matrix): disable finger pinch by default --- launcher/concert/launch_concert.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/launcher/concert/launch_concert.sh b/launcher/concert/launch_concert.sh index ecb18c7..d7fa8df 100755 --- a/launcher/concert/launch_concert.sh +++ b/launcher/concert/launch_concert.sh @@ -20,9 +20,11 @@ export PATH=/opt/homebrew/bin:$PATH # delegate has headroom and stays fluid AND stable. Override with # MEDIAPIPE_DELEGATE=gpu only for short sessions where you accept the crash risk. export MEDIAPIPE_DELEGATE="${MEDIAPIPE_DELEGATE:-cpu}" -# Finger pinches drive the matrix global actions (8 slots). PINCH_ENABLE gates -# ONLY the pinch detector; the air-piano finger-strike (FINGER_PIANO) stays off. -export PINCH_ENABLE="${PINCH_ENABLE:-1}" +# Finger pinches (matrix global actions + per-voice pinch bindings) are +# DISABLED by default. PINCH_ENABLE gates ONLY the pinch detector; set +# PINCH_ENABLE=1 to re-enable. The air-piano finger-strike (FINGER_PIANO) +# stays off independently. +export PINCH_ENABLE="${PINCH_ENABLE:-0}" # Gestures use the iPhone Vision hands exclusively (stable, rotation-invariant); # the Mac MediaPipe hand detector is skipped under --iphone-usb (multi.py). export FINGER_SOURCE="${FINGER_SOURCE:-iphone}"