AzuOS is an Arch-based Operating System featuring a Desktop Environment written with Web Technologies and a Python Backend.
Try out a live demo ↗An advantage of AzuOS being built on Web Technologies is it allows users and developers to easily customize their system and make it yours! From a simple change in a theme file, to replacing a css file, to literally writing your own desktop script :3
All that is required for developers is decent experience with Vanilla Javascript and you're good to go 👍
I know... it seems weird having a Desktop Environment based on Javascript and Python and this alone is enough to drive some people away, which is kinda understandable. A Web-Based Desktop makes development faster and easier, even for those just forking the project. Although admittly, a desktop not written primarily with such languages is better.
AzuOS is built using Javascript & Python, however runs on top of Arch Linux. so I can say 'I use Arch btw :3'
Theoretically, AzuOS can run on other linux systems, assuming they also use bash, you may need to replace some shell scripts with ones that work on your linux distro of choice.
FreeBSD could probably work too, although shell scripts may require rewriting too.
If you're interested in contributing to AzuOS or forking the project, you first need to setup up your workspace!
Disclaimer: AzuOS is likely going to error out on any non-unix-like platforms (I'm talking to you Windows 10/11) so if AzuOS doesn't work, please do not make a GitHub issue as I will not be handling it, you're likely going to need to wait for someone else to resolve it for you, or otherwise take matters into your own hands and make it work. To make things easier, just use a Unix-like Platform, like any Linux Distro, or perhaps BSD (untested), you have better chances of using AzuOS with no errors than you have on Windows. Thank you in advance 🎩
So here's how:
First confirm you have git
, python3
, python3-pip
and xorg
Make sure you have git
installed, this will allow you to fetch the latest AzuOS source directly from GitHub
Git for Debian/Ubuntu (Debian-based distros):
sudo apt install git-all
Git for Arch Linux:
sudo pacman -S git
Git for Windows:
There are also a few ways to install Git on Windows. The most official build is available for download on the Git website. Just go to https://git-scm.com/download/win and the download will start automatically. Note that this is a project called Git for Windows, which is separate from Git itself; for more information on it, go to https://gitforwindows.org.
Source: Getting Started: Installing Git (git-scm.com)
Git for MacOS:
There are several ways to install Git on macOS. The easiest is probably to install the Xcode Command Line Tools. On Mavericks (10.9) or above you can do this simply by trying to run git from the Terminal the very first time.
$ git --version
If you don’t have it installed already, it will prompt you to install it.
If you want a more up to date version, you can also install it via a binary installer. A macOS Git installer is maintained and available for download at the Git website, at https://git-scm.com/download/mac.
Source: Getting Started: Installing Git (git-scm.com)
If your operating system of choice isn't listed, please do research on installing git for said system.
After installing git
, to download AzuOS, run
git clone https://github.com/AzuSystem/AzuOS {directory of choice}
cd {directory of choice}
It is recommended that you clone this repo into /azuos, although you'll likely need to use sudo to do so.
Now for python, which is required for initialising AzuOS, and uh, we won't be using electron anytime soon~ :)
Python for Debian/Ubuntu (Debian-based distros):
sudo apt install python3 python3-pip
Python for Arch Linux:
sudo pacman -S python python-pip
Python Installer for Windows (Don't forget to install with pip!): https://www.python.org/downloads/windows/
Python Installer for MacOS (Don't forget to install with pip!): https://www.python.org/downloads/macos/
If your operating system of choice isn't listed, please do research on installing Python 3 and PIP for Python for said system.
Once python and pip have been installed, we need to install a few modules
This command in most cases, should be universal across operating systems, if it doesn't work, you may need to google for solutions :'(
pip install pywebview psutil py-cpuinfo
AzuOS runs on X.org in a live ISO.
If you wanna try running AzuOS via X.org, you'll need to install it first. If you're a Windows/MacOS user, don't worry about this :3
Xorg for Debian/Ubuntu (Debian-based distros):
sudo apt install xorg
Xorg for Arch Linux:
sudo pacman -S xorg
After installing, somewhere in your home directory (/home/username or ~/) you'll find .xinitrc
Open/create this file in a text editor of your choice (i'll use vim)
sudo vim ./.xinitrc
And write
python {azuos directory}
And save
:wq
Afterwards, if you wanna start X server with AzuOS running, just run
startx
I (MTSyntho), come from a background of making OS Concepts using Windows Batch Scripting and Microsoft PowerPoint.
None of my creations were any good but I enjoyed making them either way, since those days it's been my dream to make my own functional OS to some degree.
And now 3 years later, in 2024, we have AzuOS, i'll never forget those amazing days ❤️
p.s azuos doesnt need a web server to run, running the html page directly works pretty well :3