What does your OS look like? (Screen Shots..)

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
trolly
Member
Member
Posts: 52
Joined: Tue Mar 25, 2008 12:26 pm

Re: What does your OS look like? (Screen Shots..)

Post by trolly »

Lukand wrote:
trolly wrote:this is how my os looks now

it's written almost entirely in freebasic (and a little bit assembly for the init, and the interrupts bootstrap)
Doesn't it copy a little bit of Classic Macintosh, huh? Anyways, great.
Yeah, i copied the platinium theme from mac os 8 haha, but it will be skinable. if you have design idea for the window decoration, you are welcome
User avatar
zesterer
Member
Member
Posts: 59
Joined: Mon Feb 22, 2016 4:40 am
Libera.chat IRC: zesterer
Location: United Kingdom
Contact:

Re: What does your OS look like? (Screen Shots..)

Post by zesterer »

Tupai (formerly Thoth) has reached a stage I'm satisfied with. It has a very simple command prompt, and... Snake!

I'm quite happy with how it looks, and the internals are *mostly* satisfactory.
tupai-0.png
tupai-0.png (7.93 KiB) Viewed 3697 times
Current developing Tupai, a monolithic x86 operating system
http://zesterer.homenet.org/projects.shtml
User avatar
Octacone
Member
Member
Posts: 1138
Joined: Fri Aug 07, 2015 6:13 am

Re: What does your OS look like? (Screen Shots..)

Post by Octacone »

zesterer wrote:Tupai (formerly Thoth) has reached a stage I'm satisfied with. It has a very simple command prompt, and... Snake!

I'm quite happy with how it looks, and the internals are *mostly* satisfactory.
tupai-0.png
Holy Sh*t! This prompt looks exactly like the one I am working on right now. I didn't have enough time to post it, but if you see it don't get surprised. I guess we are not that unique after all. Great job!
OS: Basic OS
About: 32 Bit Monolithic Kernel Written in C++ and Assembly, Custom FAT 32 Bootloader
User avatar
crunch
Member
Member
Posts: 81
Joined: Wed Aug 31, 2016 9:53 pm
Libera.chat IRC: crunch
Location: San Diego, CA

Re: What does your OS look like? (Screen Shots..)

Post by crunch »

octacone wrote:
zesterer wrote:Tupai (formerly Thoth) has reached a stage I'm satisfied with. It has a very simple command prompt, and... Snake!

I'm quite happy with how it looks, and the internals are *mostly* satisfactory.
tupai-0.png
Holy Sh*t! This prompt looks exactly like the one I am working on right now. I didn't have enough time to post it, but if you see it don't get surprised. I guess we are not that unique after all. Great job!
I'm confused... What exactly is unique about that prompt?
User avatar
bzt
Member
Member
Posts: 1584
Joined: Thu Oct 13, 2016 4:55 pm
Contact:

Re: What does your OS look like? (Screen Shots..)

Post by bzt »

I know it's not much, but at least I can show something :-)
My os is booting from various sources (BIOS, EFI, disk/ROM etc.), it has a kernel bss and an utf8 compatible kprintf for lfb (using a PSF2 file).
Attachments
First steps
First steps
Kevin
Member
Member
Posts: 1071
Joined: Sun Feb 01, 2009 6:11 am
Location: Germany
Contact:

Re: What does your OS look like? (Screen Shots..)

Post by Kevin »

bzt wrote:I know it's not much, but at least I can show something :-)
Unless these are fake messages, it's by far more than most of the postings in this thread :)
Developer of tyndur - community OS of Lowlevel (German)
User avatar
zesterer
Member
Member
Posts: 59
Joined: Mon Feb 22, 2016 4:40 am
Libera.chat IRC: zesterer
Location: United Kingdom
Contact:

Re: What does your OS look like? (Screen Shots..)

Post by zesterer »

octacone wrote:Holy Sh*t! This prompt looks exactly like the one I am working on right now. I didn't have enough time to post it, but if you see it don't get surprised. I guess we are not that unique after all. Great job!
Well, I did try to base the look and feel off the Linux kernel as much as I could. Perhaps I'll add an ASCII art splash screen...
Current developing Tupai, a monolithic x86 operating system
http://zesterer.homenet.org/projects.shtml
User avatar
Octacone
Member
Member
Posts: 1138
Joined: Fri Aug 07, 2015 6:13 am

Re: What does your OS look like? (Screen Shots..)

Post by Octacone »

Basic OS Huge Milestone Update:
•New Shell Theme, much more minimalistic, without too many colors
•Internal Code Improvements, fixed many bugs
First Ever Storage Device Driver, pooling method (for now), ATA driver type, not completed, early version

Here is something that I am really proud of:
Basic_OS_HDD_Driver_Milestone.png
Basic_OS_HDD_Driver_Milestone.png (8.04 KiB) Viewed 3477 times
OS: Basic OS
About: 32 Bit Monolithic Kernel Written in C++ and Assembly, Custom FAT 32 Bootloader
User avatar
osdever
Member
Member
Posts: 492
Joined: Fri Apr 03, 2015 9:41 am
Contact:

Re: What does your OS look like? (Screen Shots..)

Post by osdever »

Looks great!
Developing U365.
Source:
only testing: http://gitlab.com/bps-projs/U365/tree/testing

OSDev newbies can copy any code from my repositories, just leave a notice that this code was written by U365 development team, not by you.
User avatar
bzt
Member
Member
Posts: 1584
Joined: Thu Oct 13, 2016 4:55 pm
Contact:

Re: What does your OS look like? (Screen Shots..)

Post by bzt »

Kevin wrote:Unless these are fake messages, it's by far more than most of the postings in this thread :)
No, they are definitely not :-) See for yourself, the code is opensource and hosted on github.
https://github.com/bztsrc/osz

Maybe it's more advanced than most of the postings here but frankly I'm hasitating to call it a kernel as interrupts are not working and there's no user input of any kind... yet :-)
User avatar
Ycep
Member
Member
Posts: 401
Joined: Mon Dec 28, 2015 11:11 am

Re: What does your OS look like? (Screen Shots..)

Post by Ycep »

octacone wrote:Basic OS Huge Milestone Update:
•New Shell Theme, much more minimalistic, without too many colors
•Internal Code Improvements, fixed many bugs
First Ever Storage Device Driver, pooling method (for now), ATA driver type, not completed, early version
Finally you are listening to my words... I understand how much happiness you get by seeing your sector-device finally working.
I debugged floppy for 2 months... And after all that time I found out that problem was one single sign (sign !).
User avatar
Octacone
Member
Member
Posts: 1138
Joined: Fri Aug 07, 2015 6:13 am

Re: What does your OS look like? (Screen Shots..)

Post by Octacone »

Lukand wrote:
octacone wrote:Basic OS Huge Milestone Update:
•New Shell Theme, much more minimalistic, without too many colors
•Internal Code Improvements, fixed many bugs
First Ever Storage Device Driver, pooling method (for now), ATA driver type, not completed, early version
Finally you are listening to my words... I understand how much happiness you get by seeing your sector-device finally working.
I debugged floppy for 2 months... And after all that time I found out that problem was one single sign (sign !).
Yeah, I was really really happy. I know what it feels like to have a bug you can't solve. I was having an issue with reading data, it was an easy fix but took me two days to figure out.
catnikita255 wrote:Looks great!
Thanks!
OS: Basic OS
About: 32 Bit Monolithic Kernel Written in C++ and Assembly, Custom FAT 32 Bootloader
klange
Member
Member
Posts: 679
Joined: Wed Mar 30, 2011 12:31 am
Libera.chat IRC: klange
Discord: klange

Re: What does your OS look like? (Screen Shots..)

Post by klange »

My dynamic loader is mostly working.

Image

There's still a bunch of work to do, but it's sufficiently functioning to get an application with several dependencies loaded. Something's not initializing correctly in Cairo, but freetype, libpng, and my own libraries seem to be working okay.

(PS: The clock thinks it's 30 Nov because of a VirtualBox bug...)
User avatar
osdever
Member
Member
Posts: 492
Joined: Fri Apr 03, 2015 9:41 am
Contact:

Re: What does your OS look like? (Screen Shots..)

Post by osdever »

Amazing.
Developing U365.
Source:
only testing: http://gitlab.com/bps-projs/U365/tree/testing

OSDev newbies can copy any code from my repositories, just leave a notice that this code was written by U365 development team, not by you.
trolly
Member
Member
Posts: 52
Joined: Tue Mar 25, 2008 12:26 pm

Re: What does your OS look like? (Screen Shots..)

Post by trolly »

Updated look , it's a little bite more like "motif"

the screenshot shows the icon editor and the open file dialog
Attachments
Capture2.JPG
Post Reply