OSDev.org
https://forum.osdev.org/

What does your OS look like? (Screen Shots..)
https://forum.osdev.org/viewtopic.php?f=1&t=12087
Page 252 of 260

Author:  skyesp [ Sun Apr 03, 2022 10:50 am ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

It's just a prototype windowing environment, very early days. However, I think you can see the inspiration (MacOS system 1 and the like). The grey rectangles up top are font characters. I have pixel font rendering but no font yet haha.
Image

Author:  nifanfa [ Mon Apr 04, 2022 7:24 am ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

Image

Author:  skyesp [ Tue Apr 05, 2022 8:33 am ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

nifanfa wrote:
Image

That looks great :) Am I right in thinking that the name implies you are writing in .NET? That would be rather fascinating.

Author:  nifanfa [ Sat Apr 30, 2022 7:21 am ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

skyesp wrote:
nifanfa wrote:
Image

That looks great :) Am I right in thinking that the name implies you are writing in .NET? That would be rather fascinating.

Author:  nifanfa [ Sat Apr 30, 2022 7:23 am ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

I just renamed it because it reminds of SharpOS. they are totally different things

Author:  no92 [ Wed May 11, 2022 11:39 am ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

Managarm (repo link) can now run sway, including X apps via xwayland. See for yourself:

Image

Edit: I should mention that this is not upstreamed yet. Feel free to check out the PRs, though!

Author:  Kamal123 [ Fri May 27, 2022 10:17 am ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

Hello everyone, this months brought lots of improvements to the entire system, we now have fully higher half kernel support, Drivers loaded as kernel-mode module (dll files), Dynamic libraries for user mode processes (dll files), PCI-Express with MSI support, SMP support, SSE/SSE2 support, networking & sound support with Intel HD Audio as hardware sound card.

Here's an image of window compositor with true type font ("Roboto").
Image

https://github.com/manaskamal/aurora-xeneva do give a star because it motivates. Thanks to everyone from this site, who helped me alot...

Thanks,
Manas Kamal Choudhury

Author:  Demindiro [ Wed Jun 22, 2022 2:08 pm ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

I'm currently working on a tiling window manager. It is far from being finished but I'd like to show off what I have already :D

Attachment:
File comment: Ratio of 0.5
2022-06-22-214801_2560x1440_scrot.png
2022-06-22-214801_2560x1440_scrot.png [ 64.23 KiB | Viewed 5319 times ]

Attachment:
File comment: Ratio of 0.375
2022-06-22-220145_2560x1440_scrot.png
2022-06-22-220145_2560x1440_scrot.png [ 63.36 KiB | Viewed 5319 times ]


The WM uses a binary tree to determine how to size each window. Each parent node has a 16-bit ratio (from 0 to 1 inclusive) to determine how many pixels high or wide each child may be. The border is simply a fixed amount of pixels substracted from the final size. It also automatically determines whether to split horizontally or vertically such that the windows have an aspect ratio that is as close to 1 as possible. I do intend to make it possible to resize & move windows though, of course.

I'm using fontdue for rendering the characters. It is simple to use and seems to work very well. I had to implement support for SSE2 though since LLVM seems to use SSE instructions in intrinsics regardless of the soft-float feature but it turned out to be quite easy (though I mistakenly aligned the stack after a call instead of before, that was quite a headscratcher).

Author:  davmac314 [ Wed Jun 22, 2022 4:37 pm ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

Looks neat!

Demindiro wrote:
I had to implement support for SSE2 though since LLVM seems to use SSE instructions in intrinsics regardless of the soft-float feature but it turned out to be quite easy (though I mistakenly aligned the stack after a call instead of before, that was quite a headscratcher).

What about -mgeneral-regs-only?

Author:  Demindiro [ Thu Jun 23, 2022 5:07 am ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

davmac314 wrote:
What about -mgeneral-regs-only?


AFAICT it only adds these options: -target-feature -x87 -target-feature -mmx -target-feature -sse

Given that I already specified -sse and -mmx (and the Rust compiler doesn't seem to have a direct equivalent to -mgeneral-regs-only) it probably wouldn't help.

Author:  Mathewnd [ Sun Jun 26, 2022 5:39 pm ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

After some fiddling around I got my kernel to boot and work on real hardware!

Image

Author:  eekee [ Tue Jun 28, 2022 4:36 am ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

Mathewnd wrote:
After some fiddling around I got my kernel to boot and work on real hardware!

Cool! Are you aiming for POSIX compliance?

Author:  Mathewnd [ Fri Jul 01, 2022 1:23 pm ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

eekee wrote:
Cool! Are you aiming for POSIX compliance?


Yup! That's what I was aiming for. Although now I'm rewriting the kernel from the ground up because I had made some design mistakes, and also because I want it to better use modern hardware (it ran in protected mode, for example).

Author:  dseller [ Tue Jul 05, 2022 11:49 am ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

Working on the spiritual successor to my previous OS. This one combines my other pet project, the Stage programming language, with an OS: StageOS. Still pretty early on, but yeah. The message in the Kernel window is loaded from the filesystem (FAT16) at the moment.

Image

Author:  Demindiro [ Fri Jul 08, 2022 4:24 am ]
Post subject:  Re: What does your OS look like? (Screen Shots..)

It took me a while but I finally got a sort-of working GUI!

Attachment:
File comment: GUI on real hardware
v0.2a-hp-elitebook-folio-1040-g2.jpg
v0.2a-hp-elitebook-folio-1040-g2.jpg [ 121.58 KiB | Viewed 4790 times ]

Page 252 of 260 All times are UTC - 6 hours
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
http://www.phpbb.com/