add seed timer & re-org

This commit is contained in:
Sebastian Cabrera 2026-06-25 10:35:11 -04:00
parent a3cd2f0fdd
commit 563ad690c2
Signed by: okseby
GPG key ID: 2DDBFDEE356CF3DE
9 changed files with 131 additions and 0 deletions

View file

@ -0,0 +1,14 @@
#!/usr/bin/env bash
# Check if the Metal HUD is currently enabled
MTL_STATUS=$(/bin/launchctl getenv MTL_HUD_ENABLED 2>/dev/null)
if [ "$MTL_STATUS" = "1" ]; then
# If enabled, disable it
/bin/launchctl unsetenv MTL_HUD_ENABLED
echo "Metal HUD disabled"
else
# If disabled, enable it
/bin/launchctl setenv MTL_HUD_ENABLED 1
echo "Metal HUD enabled"
fi