A Modern, Elegant Linux Distribution Built for Performance and Beauty
Features β’ Screenshots β’ Installation β’ Package Management β’ Building β’ Contributing
ArxisOS is a beautifully crafted Linux distribution based on Fedora 43, featuring the KDE Plasma 6 desktop environment. Designed with a focus on aesthetics, performance, and user experience, ArxisOS combines the stability and security of Fedora with a stunning custom visual identity.
Whether you're a developer, creative professional, or everyday user, ArxisOS provides a polished, cohesive experience right out of the box.
| Feature | Description |
|---|---|
| KDE Plasma 6 | The latest Plasma desktop with Wayland and X11 support |
| PurPurDay Theme | Custom global theme with matching colors, icons, and decorations |
| Magna-Glassy Icons | Beautiful glassy icon theme for a modern look |
| Oreo Cursors | Elegant white cursor theme |
| Custom Plymouth | ArxisOS branded boot splash |
| SDDM Theme | Matching login screen with ArxisOS branding |
| GRUB Theme | Custom bootloader theme |
- Fedora 43 Base β Latest packages, cutting-edge kernel, and excellent hardware support
- SELinux Enabled β Enterprise-grade security out of the box
- Flatpak Ready β Access to thousands of applications via Flathub
- DNF Package Manager β Fast, reliable package management
- Systemd β Modern init system with excellent service management
- Btrfs Support β Advanced filesystem with snapshots and compression
| Category | Applications |
|---|---|
| Web | Firefox |
| Office | LibreOffice Suite |
| Files | Dolphin File Manager |
| Terminal | Konsole with custom ArxisOS profile |
| Text Editor | Kate |
| Images | Gwenview |
| Documents | Okular |
| Archive | Ark |
| Screenshots | Spectacle |
| Remote Desktop | Remmina (RDP, VNC, SPICE) |
| System | Plasma Discover, System Monitor |
GRUB Bootloader β Custom ArxisOS themed boot menu with sleek dark design
ArxisOS Desktop β KDE Plasma 6 with PurPurDay theme, Welcome dialogs, and stunning cityscape wallpaper
Anaconda Installer β Language and keyboard layout selection with ArxisOS branding
Installation Progress β Clean, modern interface showing software installation status
| Component | Requirement |
|---|---|
| Processor | 64-bit (x86_64) CPU, 2 GHz or faster |
| Memory | 4 GB RAM |
| Storage | 20 GB available disk space |
| Graphics | GPU with OpenGL 3.3 support |
| Display | 1024x768 resolution |
| Component | Requirement |
|---|---|
| Processor | 64-bit quad-core CPU, 3 GHz or faster |
| Memory | 8 GB RAM or more |
| Storage | 50 GB SSD |
| Graphics | GPU with Vulkan support |
| Display | 1920x1080 or higher |
Download the latest ArxisOS ISO from the Releases page.
sudo dd if=ArxisOS-1.0-x86_64.iso of=/dev/sdX bs=4M status=progress oflag=syncUse Rufus or balenaEtcher
sudo dd if=ArxisOS-1.0-x86_64.iso of=/dev/diskN bs=4m- Boot from the USB/DVD
- Select "Start ArxisOS" from the boot menu
- Once the live desktop loads, click "Install ArxisOS" on the desktop
- Follow the Anaconda installer wizard
- Reboot and enjoy ArxisOS!
The live environment includes a fully functional KDE Plasma desktop with automatic login. You can explore ArxisOS before installing.
- Default User:
liveuser(no password, passwordless sudo) - Session: Plasma X11
ArxisOS currently uses DNF with access to Fedora 43 repositories:
# Update system
sudo dnf upgrade
# Install a package
sudo dnf install package-name
# Search for packages
dnf search keyword
# Remove a package
sudo dnf remove package-nameFlatpak is pre-installed for sandboxed applications:
# Add Flathub repository
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
# Install an application
flatpak install flathub org.application.Name
# Run a Flatpak application
flatpak run org.application.NameWe are developing ApM (Arxis Package Manager) β a next-generation package manager designed specifically for ArxisOS. Inspired by the simplicity and power of Arch Linux's pacman and AUR, ApM will provide:
| Feature | Description |
|---|---|
Native .apm Packages |
Lightweight, efficient package format designed for ArxisOS |
| RPM Compatibility | Seamless installation of Fedora/RHEL .rpm packages |
| ApR Repository | Community-driven package repository (like Arch's AUR) |
| APMBUILD System | Simple, readable build scripts for package creation |
| Built in Rust | Blazing-fast performance with parallel downloads |
Want to learn more? Check out the ApM Documentation for detailed information on package format, CLI usage, building packages, the ApR repository system, and RPM compatibility.
- Fedora 43 or compatible system
osbuild-composerfor image building- Root/sudo access
- ~50GB free disk space
-
Clone the repository:
git clone https://github.com/arxisos/arxisos-build.git cd arxisos-build -
Start osbuild-composer:
sudo systemctl start osbuild-composer.socket
-
Build the base ISO:
./scripts/build-iso.sh --wait
-
Apply ArxisOS branding:
sudo ./scripts/apply-composer-branding.sh <base-iso> ArxisOS-1.0-x86_64.iso
arxisos-build/
βββ blueprints/ # osbuild-composer blueprints
β βββ arxisos-kde.toml # Main KDE Plasma blueprint
βββ branding/ # Visual assets
β βββ logos/ # ArxisOS logos and icons
β βββ wallpapers/ # Desktop wallpapers
β βββ plymouth/ # Boot splash theme
β βββ grub/ # Bootloader theme
β βββ sddm/ # Login manager theme
β βββ plasma-themes/ # KDE Plasma themes
β βββ icons/ # Icon themes
β βββ cursors/ # Cursor themes
βββ scripts/ # Build and branding scripts
β βββ build-iso.sh # ISO build script
β βββ apply-composer-branding.sh # Branding application
βββ Screenshots/ # OS screenshots for documentation
βββ PLASMA-CONFIGS/ # KDE configuration files
βββ Skel/ # User skeleton files
βββ APM.md # ApM Package Manager documentation
βββ README.md # This file
ArxisOS uses KDE Plasma's standard theming system:
- Open System Settings
- Navigate to Appearance
- Customize:
- Global Theme β Overall look and feel
- Plasma Style β Panel and widget appearance
- Colors β System color scheme
- Window Decorations β Titlebar style
- Icons β Icon theme
- Cursors β Mouse cursor theme
Default wallpapers are located in /usr/share/wallpapers/ArxisOS/.
To add custom wallpapers, place them in ~/.local/share/wallpapers/.
Black screen after boot:
- Try booting with the "Basic Graphics" option
- Add
nomodesetto kernel parameters
Plymouth not showing:
- Ensure
rhgb quietare in kernel parameters - Rebuild initramfs:
sudo dracut -f
Wrong resolution:
- Open System Settings β Display and Monitor
- Configure your display settings
Wayland issues:
- Log out and select "Plasma (X11)" from the session menu
DNF slow:
sudo dnf makecacheBroken dependencies:
sudo dnf distro-syncWe welcome contributions to ArxisOS! Here's how you can help:
- Use the GitHub Issues page
- Include system information:
fastfetchorinxi -F - Provide steps to reproduce the issue
- Fork the repository
- Create a feature branch:
git checkout -b feature/amazing-feature - Commit your changes:
git commit -m 'Add amazing feature' - Push to the branch:
git push origin feature/amazing-feature - Open a Pull Request
- Theming β Improve or create new visual themes
- Documentation β Help improve docs and guides
- Testing β Test on different hardware configurations
- Translations β Help translate ArxisOS
- ApM Development β Contribute to the package manager
- KDE Plasma 6 desktop
- PurPurDay theme integration
- Custom boot splash and login screen
- GRUB theming
- Pre-installed applications
- ApM package manager (alpha)
- ArxisOS Welcome application
- Additional wallpapers
- Improved installer experience
- ApM package manager (stable)
- ApR community repository
- ArxisOS-specific applications
- ARM64 support
Brad Heffernan β Creator and Lead Developer
- Fedora Project β Base distribution
- KDE Community β Plasma desktop environment
- PurPurDay Theme β Original theme inspiration
- All open-source contributors whose work makes ArxisOS possible
ArxisOS is distributed under the GNU General Public License v3.0.
See LICENSE for more information.
- Website: https://arxisos.com
- Documentation: https://docs.arxisos.com
- Support: https://support.arxisos.com
- GitHub: https://github.com/arxisos
ArxisOS β Where Beauty Meets Performance
Made with β€οΈ in Australia




