This commit is contained in:
mr0xb 2026-06-03 14:36:50 -04:00
commit 715eb53860
No known key found for this signature in database
57 changed files with 7755 additions and 3 deletions

View file

@ -0,0 +1,10 @@
#!/bin/bash
# Stop screen recording when clicked
# This simulates the macOS menu bar behavior
# Try to stop screen recording via keyboard shortcut
osascript -e 'tell application "System Events" to key code 28 using {shift down, command down}'
# Or try to quit QuickTime Player if it's recording
pkill -f "QuickTime Player"