Skip to content

Instantly share code, notes, and snippets.

View ChefAustin's full-sized avatar
🤙
Rock'n'roll

Austin Culter ChefAustin

🤙
Rock'n'roll
  • Amsterdam, NL
View GitHub Profile
@ChefAustin
ChefAustin / currentBuildIsSeed.py
Created November 25, 2020 15:55 — forked from Piker-Alpha/currentBuildIsSeed.py
Check for Beta build on macOS 10.10 and greater
#!/usr/bin/python
import objc
from Foundation import NSBundle, NSClassFromString
SeedingBundle = NSBundle.bundleWithPath_('/System/Library/PrivateFrameworks/Seeding.framework')
objc.loadBundleFunctions(SeedingBundle, globals(), [("currentBuildIsSeed", '@')])
buildInfo = NSClassFromString('SDBuildInfo')