infastracture — Minimal Open Source Infrastructure Tools for Linux Boost Your Website Traffic with TrafficPeak
Open Source · Always Free

Building the infrastructure
you deserve.

From firmware to shell, bootloader to desktop OS — we craft minimal, fast, and beautiful open-source tools for people who care about every byte.

infastracture is a collection of Linux infrastructure projects designed for power users, system administrators, and the ricing community. Every tool is built from scratch with a focus on performance, minimalism, and clean code.

terminal
$ git clone https://github.com/infastracture/cmshell
$ cd cmshell && make install
Installed to /usr/local/bin/cmshell
$ cmshell
→ minimal shell for ricers. loaded.
Scroll
About infastracture

What is infastracture?

infastracture is an open-source project organization focused on building foundational Linux infrastructure tools. The name is a play on "infrastructure" — because every great system needs a solid foundation underneath it.

The project was born out of frustration with existing tools that have grown bloated over decades. Bash is over 2,000 lines of shell script. GRUB carries legacy code from the 1990s. SeaBIOS supports hardware that nobody uses anymore. We believe there is a better way — tools that do one thing, do it fast, and get out of your way.

Currently, infastracture maintains four projects spanning the entire Linux stack: a desktop operating system called Atmos, a minimal shell called cmshell, a lightweight BIOS implementation called inSeaBIOS, and a Rust-based bootloader called proboot. Each project is independently useful, but together they represent a vision of what a minimal Linux system can look like from the ground up.

All projects are released under permissive open-source licenses. There are no premium tiers, no telemetry, no data collection, and no phone-home mechanisms. The source code is the documentation. If you can read the code, you understand the tool.

Our Projects

Open source Linux tools, built different

Every project under the infastracture umbrella is designed to be minimal, fast, and opinionated. We do not try to be everything for everyone — we build tools that we ourselves want to use every day.

Hyprland OS

Atmos — Hyprland OS with Cool Theme

Atmos is a complete Linux desktop distribution built around Hyprland, the popular Wayland tiling compositor. Unlike other Hyprland-based distros that hand you a bare config and wish you luck, Atmos comes with a carefully designed visual theme out of the box.

The default theme uses a Catppuccin-inspired blue palette with custom border colors, smooth fade and slide animations, and a consistent look across Waybar, wofi, and GTK applications. It is ISO-ready, meaning you can flash it to a USB drive and install it on bare metal in minutes. The upcoming Atmos 27.1 release will be built on the next version of Hyprland with a redesigned theme engine and GTK4 support.

  • Pre-configured Hyprland with Waybar and wofi
  • Custom Catppuccin-inspired blue theme throughout
  • Smooth border and fade animations configured by default
  • ISO image for bare-metal installation via dd or Ventoy
Visit Atmos
Shell C

cmshell — Minimal Shell for Ricers

cmshell is a lightweight UNIX shell written from scratch in C. The entire project compiles to a binary under 5 kilobytes with absolutely zero runtime dependencies — no libc wrappers, no shared libraries, no external config parsers.

Despite its tiny size, cmshell includes features that ricing enthusiasts actually need: customizable ANSI-colored prompts, tab completion for commands and file paths, command history with up/down arrow navigation, and a clean config file format. It is designed as a drop-in alternative to bash or zsh for users who want a faster, lighter terminal experience without giving up the features that make their setup look good.

  • Less than 5KB compiled binary, zero dependencies
  • Customizable prompt with full ANSI color support
  • Built-in tab completion and command history
  • Ideal for ricing setups, minimal distros, and containers
View on GitHub
WIP Firmware

inSeaBIOS — Lightweight Open Source BIOS

inSeaBIOS is a stripped-down fork of SeaBIOS, the standard open-source x86 BIOS implementation used in QEMU and many embedded systems. The goal is to remove decades of legacy hardware support that most users do not need.

The target is a flash image under 32KB — compared to SeaBIOS's 256KB+ — with POST times under 100 milliseconds on modern hardware. This makes inSeaBIOS particularly interesting for QEMU/KVM virtual machines where every millisecond of boot time matters, as well as for retro computing and embedded x86 systems where flash storage is limited.

  • Target: sub-100ms POST time on modern hardware
  • Stripped down to approximately 32KB flash image
  • Legacy BIOS and basic UEFI CSM support
  • Designed for QEMU/KVM, embedded, and retro systems
Coming Soon
WIP Rust

proboot — Fast Rust-Based Linux Bootloader

proboot is a next-generation Linux bootloader written entirely in Rust. It is designed as a modern replacement for GRUB2, which has accumulated significant technical debt over its 20+ year history. proboot aims to be faster, safer, and easier to configure.

Key planned features include native LUKS2 decryption (eliminating the need for a separate initramfs for many setups), TPM2 unlock support, a themeable TUI boot menu, and an automated GRUB-to-proboot migration tool. Rust's memory safety guarantees mean an entire class of bootloader bugs — buffer overflows, use-after-free — simply cannot exist in proboot by construction.

  • Written in Rust — memory safe by design
  • Native LUKS2 and TPM2 unlock support
  • Customizable boot menu with TUI themes
  • Drop-in GRUB replacement with automated migration
Coming Soon

Getting Started with infastracture

Installing infastracture tools is straightforward. cmshell builds with a single make command and installs to your PATH immediately. Atmos provides a ready-to-flash ISO image that you can write to any USB drive. Here is how to get started with the currently available projects.

Quick Install
# Clone and install cmshell
$ git clone https://github.com/infastracture/cmshell
$ cd cmshell && sudo make install
$ cmshell
# Download and flash Atmos ISO
$ wget https://atmos.infastracture.xyz/downloads/atmos-latest.iso
$ sudo dd if=atmos-latest.iso of=/dev/sdX bs=4M status=progress && sync
# Or visit Atmos in your browser
$ open https://atmos.infastracture.xyz

Why Minimal Linux Tools Matter

The Linux ecosystem has a bloat problem. Tools that started as simple utilities have accumulated features, configuration options, and dependencies over decades. The bash shell, for example, contains over 2,000 lines of shell script just for its startup sequence. GRUB2's codebase includes support for file systems and hardware that have been obsolete for years.

This bloat is not free. Every extra line of code means more attack surface for security vulnerabilities. Every unnecessary dependency means more packages to update and more potential points of failure. Every millisecond of startup time adds up when you are booting hundreds of virtual machines or working in a terminal all day.

infastracture takes a different approach. We start from scratch and only implement what is actually needed. The result is tools that are faster to start, smaller to distribute, easier to audit for security, and simpler to maintain. This is not a new idea — it is the original Unix philosophy. We are just applying it to infrastructure software that has lost its way.

Design Principles

What makes infastracture different

Every project follows the same set of core principles. These are not aspirational goals — they are hard constraints that we enforce during code review.

Zero Bloat

Every project is stripped to its absolute essentials. No unnecessary features, no hidden dependencies, no code that serves legacy use cases. If a feature is not used by at least half our users, it does not ship.

Blazing Fast

Sub-millisecond shell startup, sub-100ms BIOS POST, instant bootloader handoff. We benchmark every release against the tools we are replacing and refuse to ship if we are not significantly faster.

Fully Open Source

All projects use MIT or GPL licenses. There is no telemetry, no phone-home, no premium tier, and no "open core" model. The source code you see is everything there is.

Ricer-Friendly

Built by members of the ricing community, for the ricing community. Every project supports deep theming, custom colors, and visual configuration out of the box — not as an afterthought.

Security First

We use memory-safe languages wherever possible. proboot is written in Rust. cmshell avoids dynamic memory allocation entirely. Smaller codebases mean fewer places for bugs to hide.

Well Documented

Comprehensive README files, inline code comments, and wiki documentation. Our rule: if a new user cannot figure out how to use a tool within five minutes, that is a bug we need to fix.

Who Uses infastracture Tools?

infastracture projects are built for a specific audience: people who care deeply about how their systems work. Here are some of the use cases our tools are designed for.

Linux Ricing Enthusiasts

The ricing community — users who obsessively customize their desktop environments, terminal emulators, and system themes — is the primary audience for cmshell and Atmos. These users want tools that look good, start fast, and can be configured to match their aesthetic. cmshell's ANSI prompt support and Atmos's pre-built theme system are designed specifically for this workflow.

System Administrators and DevOps

When you are managing hundreds or thousands of Linux machines, every millisecond of boot time and every kilobyte of disk space matters. inSeaBIOS's tiny flash image and sub-100ms POST time make it interesting for large-scale virtualization deployments where GRUB or SeaBIOS add unnecessary overhead to every VM boot.

Embedded and Retro Computing

Embedded x86 systems often have severely limited flash storage — sometimes as little as 64KB for the entire firmware. inSeaBIOS's 32KB target size makes it one of the few open-source BIOS implementations that can fit in these constraints. Retro computing enthusiasts also benefit from faster boot times on older hardware.

Roadmap

What is coming next

This is our planned development timeline. Dates are estimates and may shift as priorities change, but we try to ship on schedule.

Q1 2025

cmshell 2.0

Plugin system using shared libraries, Lua scripting support for prompt customization, and built-in syntax highlighting for terminal output.

Q2 2025

proboot 1.0 Stable

First stable release with Secure Boot support, Btrfs snapshot booting, automatic kernel fallback, and the GRUB migration tool.

Q3 2025

Atmos 27.1

Built on the next Hyprland release with a completely redesigned theme engine, GTK4 application port, and cloud sync for dotfiles across machines.

Q4 2025

inSeaBIOS UEFI

Native UEFI firmware mode with graphical configuration menu, PXE network boot support, and compatibility with modern UEFI-only hardware.

FAQ

Frequently Asked Questions

Answers to common questions about infastracture and its projects.

infastracture is an open-source project that builds minimal, fast infrastructure tools for Linux. It currently includes four projects: Atmos (a Hyprland-based desktop OS), cmshell (a minimal shell written in C), inSeaBIOS (a lightweight BIOS implementation), and proboot (a Rust-based bootloader). All projects are free and open source.
Atmos is a Linux desktop operating system built on top of Hyprland, a Wayland tiling compositor. It comes with a pre-configured cool theme, custom animations, and a complete workflow out of the box. You can download an ISO from atmos.infastracture.xyz, flash it to a USB drive, and install it on any modern computer.
cmshell is a minimal UNIX shell written in C. It compiles to a binary under 5KB with zero runtime dependencies. Despite its small size, it includes features like tab completion, command history, and customizable ANSI-colored prompts. It is designed for ricing enthusiasts and users who want a fast, lightweight terminal.
No, both inSeaBIOS and proboot are currently works in progress. inSeaBIOS is a stripped-down BIOS implementation targeting sub-100ms POST times, and proboot is a Rust-based bootloader designed to replace GRUB. You can follow their progress on the roadmap section of this page.
Yes, completely. All infastracture projects are released under permissive open-source licenses (MIT or GPL). There is no premium tier, no paid features, no telemetry, and no hidden costs. You can use them, modify them, and redistribute them however you want.
You can support infastracture by donating via PayPal (any amount helps cover hosting and development costs), starring the GitHub repositories to increase visibility, or joining the Discord community to provide feedback and bug reports.
cmshell is written in standard C with no external dependencies, so it compiles and runs on virtually any Linux distribution — Arch, Fedora, Debian, Ubuntu, Alpine, Gentoo, and others. It also works on BSD systems with minimal modifications. See the GitHub repository for build instructions.
Atmos 27.1 is the next major release of Atmos, planned for Q3 2025. It will be built on the next version of Hyprland and includes a completely redesigned theme engine, a GTK4 application port, and cloud sync for dotfiles so your configuration follows you across machines.
Support the Project

Keep the infrastructure alive

infastracture is maintained entirely in free time. Donations help cover domain registration, server hosting, CI/CD runners, and development tools. Every contribution makes a difference.

$
Secure PayPal checkout · Sent to AhmedElamir76 · No data stored
Server Hosting
CI runners, release mirrors, and project websites.
Domains and CDN
Keeping infastracture.xyz fast and accessible worldwide.
Development Tools
Licenses, IDEs, and testing hardware for firmware work.