You are browsing as a guest. Sign up (or log in) to start making projects!

Huseyin

@Huseyin

Joined June 9th, 2026

  • 8Devlogs
  • 4Projects
  • 2Ships
  • 15Votes
"Your enemy can't guess your strategy if you don't have any"
-Sun Tzu
Open comments for this post

9h 37m 35s logged

Longer Yet Shorter [Dev Post 6]

After some long work, modOS is finally getting easier to get done. But
it’s not done just yet.

What is new?

modOS now has some basic API’s, which will be used in the future by
developers to make applications that can be fully integrated into the
ecosystem.
Bootstrap is reaching completion, which will bring us to the next step:
display.
We also have one of the most important functions of an OS, file
management! modOS utilizes zenfs/core to store files and
folders(alongside their structure) in memory! This will allow the
creation of file explorers, document making, and more! This is also a
crucial piece to make a modular OS.

What is needed?

modOS still needs some more API’s, most which will come from packages.
Due to that, the next dev post should be of packer, the official package
manager for modOS. It will be the connectiong between users, database,
and developers.
User <--> Database <--> Developer
Meaning dev’s will be able to publish packages, and user’s will be able
to download them!
And finally, we need an account session thingy to keep track of each
user’s installed packages. This also will allow the usage of YOUR modOS
anywhere!

Final Regards

pretty cool

0
0
4
Open comments for this post

6h 46m 15s logged

A New Beginning [Dev Post 5]

Here is what I got done ever since I announced modOS Sevda Çiçeği!

git init

So we now have modOS-VT as a GitHub repository. It’s pretty cool. VT stands for Vite Type, indicating how the project utilizes Vite and TypeScript instead of just html and javascript.

What is made?

I made:

  • A bootstrap, which initializes every service necessary for modOS runtime.
  • Basic system.
  • Firebase!!!

Jeez, why did it take 7 hours?

Well, my friend, modOS is completely modular. So there is a bit of contradiction when I need to make a bootstrap that launches things, if there is no things. I worked on making a placeholder for almost everything.

Core Idea

modOS will be just like any other Linux distribution. You have the base system that gives you whatever you need. And you install user-generated content with a package manager! It will be so cool! But right now, I am still working on making the base system part.
PSST! Do you want to contribute to modOS by making an app for it? Well you absolutely can! Right now it’s a bit difficult as there is no modOS. However, you can develop applications using typescript any time! Later modOS versions will come with API’s that you can integrate your app into the modOS ecosystem.

Challenges

The main challenge was getting started with modOS… again… but when I did start, it starts flowing like butter.

What I LOVE about modOS right now:

Because modOS-VT is built on Vite, I can use packages and make it easier to use with GitHub pages! I did not have to make 15 commits for a bug fix while setting up GitHub pages!

Final Regards

Thank you. :)

0
0
1
Open comments for this post

3h 7m 14s logged

Announcing modOS Sevda Çiçeği Concept

After completing the pretty underdeveloped modOS Cambaz, I think it is time we move on to a full, stable, environment.

Plans for modOS Sevda Çiçeği:

  • A fully modular webOS where you can change everything from the window rules to the very development environment.
  • A package manager for distributing, installing, and managing user created packages.
  • A full modOS API for consistency and compatibality.
  • And MANY more.

Here is a checklist/roadmap for modOS that you can follow as I check off the tasks:
https://docs.google.com/document/d/1H7caegzGowVeYkntmm87eaJ8XJtSyU1Pbvb5vVNmgYI/edit?usp=sharing

Logged hours for this dev post come from earlier bug fixes and polishing to modOS Cambaz alongside the making of modOS Sevda Çiçeği

0
0
3
Ship

Welcome to modOS v1.0.0 Cambaz. It is a full webOS that comes with the basics of a computer. This full (almost) stable release is modular, flexible, and heavily optimized to up stand multiple situations.
There were many challenges when it came to converting what I did from the guide into a modular system. It came with many problems, errors, lack of sleep, so on and so forth.
Thanks to Lil 'G(PT), I was able to automate small tasks like converting HTML apps to a format that could be published in JSON.
Features of modOS Cambaz:
- A fully modular system, with the ability to publish your own JS files with others.
- A small "terminal" named run.
- Package/App manager.
- Bartender(the bar of modOS)
- WER (Window Manager of modOS)
- Automated system set up.
- Developer friendly design.
- An aesthetic that combines 2000s retro and today's modern.

From here, the future releases of modOS will focus on making a full, complete package manager which makes distributing and receiving applications across modOS more easy.

NOTE: In order to use many of the special features of modOS, you have to download and run modOS locally on your device. The picture shows what you would get in an out-of-the-box experience.

Try project → See source code →
Open comments for this post

6h 21m 56s logged

The End..? [Dev Post 4]

With the guide finally being done, I announce modOS v1.0.0 Cambaz.

Before I nerd out about everything added, here is more information about Mor ve Ötesi, the band behind Cambaz:
https://en.wikipedia.org/wiki/Mor_ve_%C3%B6tesi

Why is modOS different?

Well, throughout the path of following the guide and making modOS, I completely rejected the idea of a hard-coded anything.

Sure, it might be open-source, but what is the point of open-source if changing the source is going to take many hours of coding?

modOS competes against a permanent webOS.

The following features highlight how modOS achieves that:

  • modOS does not have any hard-coded applications, bar, desktop, etc.

  • Every app is found in a JSON file (apps.json located in /base/system/) which can be modified to install any application you want, easily! Currently this step is manual, and there is no official repository of verified applications. However, that is subject to change.

  • Bartender (the bar system of modOS) is a JavaScript file (bartender.js found in /base/system/bartender.js) which can be modified to make the bar whatever you want!

  • WER (Window Manager for modOS) is a script that inserts window functions such as the minimize and close buttons alongside the name of the window, icon, and movement system. The whole script is launched with initwindow(win) where win is the main window element.

  • Got confused with the initwindow(win) command? Not to worry, modOS comes with the exec command, which follows the format exec(appname, icon), where you can determine the name of the application (REQUIRED) and its icon (NOT REQUIRED). Whenever the command is run, the script (exec.js found in /base/system/) looks through apps.json and pulls the necessary content and scripts, giving you a fully functional app.
    Note: If you decide to use a custom icon with an existing app, exec.js will still use the icon used in the database to maintain the developers creativity!

  • So are you even more lazy? Cuz modOS desktop shows every app in apps.json for easier access. All you need is the ability to double click the app you want!
    Note: Psst! There are hidden applications. You need to run showhidden() to show them, and hidehidden() if you would like to hide them back.

  • You can customize modOS off of the base CSS by editing config.css (config.css found in /system/user/)

Default Applications List

  • App Template: It is a template for you to make your own app! (hidden by default)
  • run: An alternative for the developer console that comes with modern browsers. A great option for mobile users or older, unsupported browsers.
  • Release Notes: Your updated news for modOS!
  • Theme Song: The theme song of modOS! Plays Cambaz by Mor ve Ötesi.

Future Updates

  • A signup/login system is planned to be added for cross-platform sync ability (e.g. apps, settings, customizations, etc). This will be optional and you can still use modOS as a guest.

  • modOS developer mode: A way for you to build applications for you and others on modOS!

  • Window minimization: Currently, windows do get minimized. However, you really cannot un-minimize them without running the command document.querySelector(".win").style.display="block", which is unreliable and annoying.

  • More applications: You will use modOS developer mode to develop applications for the ecosystem. No more work for me.

10
0
13
Open comments for this post

7h 10m 44s logged

A Big Jump [Dev Post 3]

Here is an update of what I’ve been working on over the weekend. And there is a lot!

Window Movement

I followed the guide to make windows movable. However, there was a challenge.

Challenge

If I want to make modOS modular, how could I identify user-made windows? The guide showed a hard-coded movement system, but that would mean other people couldn’t make their own apps!

Solution

I used .querySelector to give every window of the same class movement functionality while keeping each instance separate. This means no matter how many windows of the same app you make, they’ll all be movable! So yes, you could have 30 copies of the same ping pong app (not on modOS… yet) and every window would work normally.

Account Feature (Still in Progress)

This is mainly what took most of the 7 hours I logged today.

What was used?

I used Firebase to establish a backend where user info would be stored. The info consists of a username, password, and user data. The first two are self-explanatory, but the data will store user changes to their OS so they can jump back in where they left off.

Challenges

The account creation script should theoretically work. However, I didn’t build the project around a package manager. Firebase works much better with one, meaning the project would need to be migrated to a framework like Vite.

Solution

There is a solution: create a new repository with Vite installed, then move everything over. I really didn’t want to deal with that right now, so the account feature will be implemented once the base build of modOS is complete.

App Launching

You can now use a terminal interface to launch apps!

Challenges

To keep apps modular while still being… apps, I couldn’t just say “open this app.” I needed users to be able to define a preferred name, icon, and content. The first two were easy, but I also needed a list of apps and their content. This way, future modOS developers can publish their applications to the modOS environment.

Solution

There is now an apps.json file with a full list of apps (1 app right now). Whenever you launch an app via exec(name, icon) from the Dev Console, it checks whether the app exists in the JSON file and, if it does, fetches its corresponding content.

A Step Towards Modular…

modOS is officially MODULAR!

What is modular as of now?

Many things!

  • I scratched the modular clock idea from the previous Dev Post… AND REPLACED IT WITH A COMPLETELY MODULAR BAR!!! So now the entire bar is modular. :)
  • Apps are now modular too! You can launch any app via exec(name, icon) in the Dev Console (often opened with F12) to render a new window with your preferred name and icon.
  • The clock idea was scratched… BUT THE CLOCK ITSELF IS STILL MODULAR!

Challenges

Making things modular takes a lot of time. You don’t just write your program in HTML anymore—you have to generate it through JavaScript. To make it modular, individual variables need to go through their own processes before everything connects together. And of course… that usually comes with a bug or two.

Solution

Uh… yeah, that was the challenge. Doesn’t really need a solution.

Releases

From now on, every new release will be named after a song from a 2000s Turkish Alternative Rock band.

The next major release will be called:

modOS v0.x.x-alpha [Mor Ve Ötesi - Cambaz]

Make sure you give it a listen. It’s a banger!

Final Thoughts

I think the project is going very well. It’s taking a lot of time, but it’s worthwhile since I’m learning new things about a programming language I’ve been using for five years now.

I’m hoping to add more features, finish the base build, and finally move on to the backend side of things.

0
0
24
Open comments for this post

2h 16m 6s logged

Getting Started [Dev Post 2]

Today, I did not do much visual progress. However, there is way more that goes on in the background.

What’s new?

  • We now have a bartender.
  • There is a clock now. But it’s not just any clock, this clock is MODULAR!
  • A very fancy weather widget with a very (not) fancy API.

A MODULAR Clock? What does that mean?

I’m glad you asked. Unlike a traditional clock, this clock actually is separated in multiple tags. That means you can move the tags around to change the order of the clock values.

API

This Dev Post is sponsored by wttr.in! With it’s simple, no sign-up, and no data limit, wttr.in is in my top 5 API’s. With a single fetch, we achieve great things like burnin’ hot weather.

Notes:

  • The clock is by definition modular, however not too accessible. This will be fixed with future updates.
  • No, this Dev Post is not actually sponsored.
  • You can check out the current state of modOS here.
3
0
76
Ship Changes requested

# Fuzz-Wall Contribution
Fuzz-Wall is a Fuzzel based wallpaper changer. It lacked, however, support and missed out on some features.
## What I added
I added mpvpaper and awww support. That means Fuzz-Wall now supports more wallpaper daemons, allowing more people to enjoy this tool.
Alongside that, Fuzz-Wall now can utilize waypaper to set wall papers. This enables picking a wallpaper daemon(instead of a hard-coded order), customization of how you want to set your wallpaper, post-commands, and more!
## Notes:
Fuzz-Wall is not owned by me. You can find the original [here](https://github.com/youngcoder45/fuzz-wall).
As of June 16, 2026, the pull request has not been accepted(not committed to the main repository). You can access my fork with the new features [here](https://github.com/krambo345/fuzz-wall).

  • 1 devlog
  • 1h
Try project → See source code →
Open comments for this post

1h 13m 59s logged

modOS v0.0.1-alpha [Dev Post 1]

This is a base release for an early preview of the main idea for modOS.

Current “features”

  • Website loads.
  • Backgrounds.
  • Base window infrastructure.
  • Cool window hover/leave effect. :D

Notes:
Although the project is supposed to be modular, it is still in early development. So every line is hard-coded and is not modular.

0
0
11
Open comments for this post

32m 43s logged

The Fuzzel Based Wallpaper Selector is EVEN BETTER now!

Overview:

Fuzz-Wall now supports the mpvpaper and awww wallpaper daemons! But more importantly, a new feature has been added. Fuzz-Wall now detects whether you have the Waypaper package, and uses that over the hard-coded Fuzz-Wall wallpaper setting for more compatibility and features.

What is Fuzz-Wall?

Fuzz-Wall(more commonly fuzz-wall) is a lightweight package for the Fuzzel(more commonly fuzzel) dmenu. Once the command fuzz-wall is launched, it opens up a customized menu of Fuzzel which allows you to pick a wallpaper from a directory. It utilizes the different wallpaper daemons(e.g. hyprpaper, awww/swww, swaypaper). It makes changing wallpapers way easier!

What Changed?

  • Added functions for mpvpaper and awww alongside their individual commands to get the desired outcome.
  • Checking for Waypaper before launching the functions to see if it can be used instead. It does not fire functions if Waypaper is present.
  • Now marked swww as retired due to the project being moved to awww. However, it is not removed for anyone that prefers the older package.

Notes

  • I am not the owner of the original repository of fuzz-wall.
  • The pull request has not been accepted as of June 16th, 2026. You may refer to my fork for the features.
  • If you would like more support or features, feel free to comment it down!
0
0
3

Followers

Loading…