An unofficial native iOS port of Fastfetch, modified to run natively on jailbroken Apple mobile devices.
Add my repo to: Sileo
Checkout the repo page seph3421's repo
This project builds Fastfetch as an ARM64 or ARM (Rootless or Rootful) Debian package (.deb) for installation through a jailbreak package manager
such as Sileo.
The current build has been successfully tested on:
| Device | SoC | Jailbreak |
|---|---|---|
| iPad Air 2 | Apple A8X | palera1n / rootless |
| iPad Pro 9.7" | Apple A9X | palera1n / rootless |
| iPhone 11 | Apple A13 Bionic | Dopamine 3.0 / rootless |
| iPhone 12 Pro Max | Apple A14 Bionic | Dopamine 3.0 / rootless |
| iPad mini 2. | Apple A7. | Amethyst. / rootful |
The device detection code identifies Apple hardware using the hw.machine identifier exposed through sysctl.
The iOS port currently provides native detection for several modules that are normally unavailable or implemented differently on Apple's mobile operating systems.
Current custom detection includes:
- CPU
- GPU
- Host / device model
- OS
- Display resolution
- Local IP address
- Shell
- Terminal
- Packages
- Other standard Fastfetch modules that remain compatible with iOS
The host, CPU, and GPU detectors identify individual Apple device identifiers rather than simply reporting generic iPhone or iPad values.
For example:
The build script is intended to run on macOS.(tested on Sequoia +)
You need:
- macOS
- Xcode
- Xcode iPhoneOS SDK
- Git
- CMake
- Python 3
- dpkg / dpkg-deb
- ldid/codesign as a fallback(included with Xcode)
Xcode is required because the project is cross-compiled against Apple's iPhoneOS SDK using Apple's Clang toolchain.
If Homebrew is not already installed, install it from:
Then install the required command-line tools:
Minimal brew list
brew install cmake git python dpkgFull brew list(Needed for Rootful)
brew install cmake git python dpkg ldid-procursusVerify them:
git --version
cmake --version
python3 --version
dpkg-deb --version(Optional/Needed for Rootful)
which ldidVerify that Xcode's iPhoneOS SDK is available:
xcrun --sdk iphoneos --show-sdk-pathThis should return a path similar to:
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk
If xcrun cannot locate the SDK, make sure Xcode is installed and selected:
sudo xcode-select -s /Applications/Xcode.app/Contents/DeveloperThen run:
xcrun --sdk iphoneos --show-sdk-pathMove To Documents:
cd ~/DocumentsClone the repository: https://github.com/seph3421/fastfetch-ios.git
git clone https://github.com/seph3421/fastfetch-ios.gitcd fastfetch-iosMove to Rootless/Rootful:
cd fastfetch-ios-Rootlesscd fastfetch-ios-RootfulMake the build script executable:
chmod +x build.shRun it:
./build.shThe script will:
- Create a temporary build directory.
- Clone the upstream Fastfetch source.
- Apply the iOS-specific patches.
- Replace unsupported Apple/macOS implementations with iOS-compatible implementations or stubs.
- Add the custom iOS CPU detector.
- Add the custom iOS GPU detector.
- Add the custom iOS/iPadOS host detector.
- Add the custom display detector.
- Configure CMake for ARM64 and the iPhoneOS SDK.
- Cross-compile Fastfetch.
- Place the resulting binary into the jailbreak filesystem layout.
- Sign the Mach-O binary.
- Package everything into a Debian
.deb. - Preserve the complete build workspace.
The resulting package will be created in the project directory as:
fastfetch_2.67.1_iphoneos-arm.deb
fastfetch_2.67.1_iphoneos-arm64.deb
The package installs Fastfetch into the Rootless jailbreak environment under:
/var/jb/usr/local/bin/fastfetchPresets are installed under:
/var/jb/usr/local/share/fastfetch/The package installs Fastfetch into the Rootful jailbreak environment under:
/usr/local/bin/fastfetchPresets are installed under:
/usr/local/share/fastfetch/The package contains the normal Debian control directory:
DEBIAN/ └── control
Transfer the resulting .deb to the jailbroken device.
For example, copy it into the device's Downloads directory and install it using Sileo or another Debian-compatible jailbreak package manager.
After installation:
fastfetch
If /var/jb/usr/local/bin or /usr/local/bin is already in your shell's PATH, Fastfetch can be launched directly.
You can also test the Rootless binary directly:
/var/jb/usr/local/bin/fastfetchYou can also test the Rootful binary directly:
/usr/local/bin/fastfetchThis is a jailbreak-oriented command-line build.
It is not intended to run as a normal App Store application or standalone iOS application bundle.
The executable is compiled for: ARM64 ARM
against Apple's: iPhoneOS 18.5 SDK.
The package is intended for Rootless jailbroken environments where /var/jb is available.
The package is intended for Rootful jailbroken environments where /usr/local/ is available.
The current build has been successfully tested in rootless jailbreak environments.
The package installs into the jailbreak prefix:
/var/jb/rather than modifying Apple's sealed system filesystem.
Tested rootless environments include:
- Dopamine
- palera1n rootless
The current build has been successfully tested in rootful jailbreak environments.
The package installs into the System prefix:
/usr/local/Tested rootless environments include:
- Amethyst
- Checkra1n
- Any checkm8 or Odysseyra1n bootstrap
The iOS hardware detection uses: sysctlbyname("hw.machine", ...)
This provides Apple's hardware identifier, for example:
iPhone12,1 or: iPad6,3
The project maps these identifiers to human-readable Apple hardware names.
The host detector maps Apple identifiers to device names including iPhones and iPads.
The CPU detector maps the hardware identifier to the corresponding Apple SoC, including:
- A4
- A5
- A5X
- A6
- A6X
- A7
- A8
- A8X
- A9
- A9X
- A10 Fusion
- A10X Fusion
- A11 Bionic
- A12 Bionic
- A12X Bionic
- A12Z Bionic
- A13 Bionic
- A14 Bionic
- A15 Bionic
- A16
- A17 Pro
- M1
- M2
- M3
- M4
- M5
The GPU detector similarly maps Apple hardware identifiers to the corresponding GPU family.
Older PowerVR-based devices use their known PowerVR GPU names, while newer Apple-designed GPUs are identified by their corresponding Apple SoC generation.
Several Fastfetch components are designed around macOS APIs or hardware that does not exist or is not publicly available in the same form on iOS.
The iOS build therefore disables or stubs components including various:
- macOS-only frameworks
- IOKit functionality
- CoreWLAN
- IOBluetooth
- DisplayServices
- MediaRemote
- AppKit
- OpenGL macOS functionality
- macOS window manager functionality
- macOS AppleScript functionality
- macOS-specific disk and power-management APIs
Unsupported modules return an appropriate "not supported on iOS" result rather than preventing Fastfetch from building.
The build script clones the upstream Fastfetch source into a temporary directory and applies these modifications during the build.
This project is based on Fastfetch:
https://github.com/fastfetch-cli/fastfetch
Fastfetch is a maintained, feature-rich system information tool written primarily in C. The upstream project supports multiple operating systems and uses CMake for building.
This repository adds an unofficial iOS/iPadOS target and device-specific detection on top of the upstream project.
Current packaged version: 2.67.1
This is an unofficial port and is not affiliated with or endorsed by:
- Apple
- Fastfetch
- Dopamine
- palera1n
- Sileo
Use this software at your own risk.
Fastfetch is distributed under the MIT License.
See the upstream project for the complete license: