OSDev.org

The Place to Start for Operating System Developers
It is currently Thu Mar 28, 2024 7:30 am

All times are UTC - 6 hours




Post new topic Reply to topic  [ 3898 posts ]  Go to page Previous  1 ... 215, 216, 217, 218, 219, 220, 221 ... 260  Next
Author Message
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Sun Apr 01, 2018 3:23 pm 
Offline
User avatar

Joined: Mon Sep 14, 2009 9:19 am
Posts: 14
Location: France
Just having some fun with colors. Sorry if it burns your eyes.


Attachments:
2018-04-01-232047_1024x793_scrot.png
2018-04-01-232047_1024x793_scrot.png [ 65.02 KiB | Viewed 6993 times ]

_________________
my projects - kogata (current OS project) - scripts for building an x86 cross-compiler
Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Sun Apr 01, 2018 6:53 pm 
Offline
Member
Member
User avatar

Joined: Wed Aug 17, 2016 4:55 am
Posts: 251
The monospace font isn't fancy enough :​v


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Tue Apr 03, 2018 2:44 pm 
Offline
Member
Member
User avatar

Joined: Sat Sep 17, 2016 2:14 am
Posts: 83
Location: Moscow, Russia
Alexis211 wrote:
Just having some fun with colors. Sorry if it burns your eyes.

Monsieur, that OS is cool, but for me, it looks like a space shooter from Action 52.

_________________
Coffee is not airplane fuel.


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Wed Apr 04, 2018 3:14 pm 
Offline
Member
Member

Joined: Tue Apr 03, 2018 2:44 pm
Posts: 36
Hello everyone! I've been waiting a long time to post - both to wait until I actually had something worth showing, and I wanted to read all 218 pages first. There are a lot of really amazing projects here!

May I introduce Saturn, my OS I've been working on for a while.

Image

After spending a lot of time on the core systems and low level bits, I turned to focus on creating a graphical environment. This was a test of the text renderer. It supports TTF fonts (thanks FreeType), normal/bold/italic styles, different sizes, and colours with ANSI escape codes.

_________________
Image is my operating system.

"...not because [it is] easy, but because [it is] hard; because that goal will serve to organize and measure the best of [my] energies and skills..."


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Fri Apr 06, 2018 1:13 pm 
Offline
Member
Member

Joined: Tue May 13, 2014 3:02 am
Posts: 280
Location: Private, UK
I've not done much UI-related work for a while... But I ported SDL2 recently (graphics, input and threads; via a partial implementation of pthreads) along with SDL_ttf and SDL_image. Here's a picture of the test program I threw together; the fancy gradient comes from a PNG image.


Attachments:
Screenshot from 2018-04-06 20-09-11.png
Screenshot from 2018-04-06 20-09-11.png [ 5.31 KiB | Viewed 7041 times ]

_________________
Image
Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Sat Apr 07, 2018 1:52 pm 
Offline
Member
Member

Joined: Tue Apr 03, 2018 2:44 pm
Posts: 36
Big, big week up at the lodge this week. After finishing my layout parser I started working on a Grid container and a Label element. Ontop of that, I also got databinding working, so in a layout file you can bind a label's caption to some variable, and then in your program you can define the variable, and when it changes the label automatically updates and renders itself.

Image

The above screenshot was generated from this layout. I currently just copy/paste that into the sourcecode, but it could just as easily be read from the filesystem.

_________________
Image is my operating system.

"...not because [it is] easy, but because [it is] hard; because that goal will serve to organize and measure the best of [my] energies and skills..."


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Sun Apr 15, 2018 6:09 pm 
Offline
Member
Member

Joined: Tue Apr 03, 2018 2:44 pm
Posts: 36
Well its been a week, so...

Big, big week up at the lodge this week. Got a lot of under-the-hood stuff implemented, so now I can start glueing things together into applications. Working on a new language interpreter and structured logging. Transcript shows both: it filters s-expression structured logs by interpreting the given typed filter (> e.x 5). My last two screenshots weren't very OS-y, so howabout a desktop of 4 applications?

Image

_________________
Image is my operating system.

"...not because [it is] easy, but because [it is] hard; because that goal will serve to organize and measure the best of [my] energies and skills..."


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Mon Apr 16, 2018 3:49 pm 
Offline
Member
Member

Joined: Sun Nov 05, 2017 2:29 pm
Posts: 31
Location: Middleboro, MA
Here's a picture of some of the work I've been doing on Alloy.

Alloy is the shell interface for BareMetal OS (but it is completely OS independent)

Image

Alloy is still in it's early development stages but you can try it out on a Linux computer if you're using a true color terminal.

You don't need the rest of the BareMetal OS project to try it out.

https://github.com/ReturnInfinity/Alloy

_________________
I'm a contributor to BareMetal OS. View it at https://github.com/ReturnInfinity/BareMetal-OS


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Wed Apr 18, 2018 12:28 am 
Offline
Member
Member

Joined: Wed Mar 30, 2011 12:31 am
Posts: 676
Image

Exploring some alternative text rendering approaches in my "NIH" branch.

_________________
toaruos on github | toaruos.org | gitlab | twitter | bim - a text editor


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Wed Apr 18, 2018 1:51 am 
Offline
Member
Member

Joined: Thu Jul 05, 2012 5:12 am
Posts: 923
Location: Finland
@klange, your way of doing OSDev is successful. I thought that relying on third-party components and the general "ToaruOS development style" were not a good strategy and I underestimated the project for subjective reasons. These things really work, i.e. a successful hobby operating can be created this way and it can be fun when doing it. If it were an attempt to be more than just a hobby, the strategy would still be good.

The NIH-branch is a good way to demonstrate that third-party components were not actually that big part of the whole ToaruOS brand. Of course they were significant but definitely not the heart of it.

_________________
Undefined behavior since 2012


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Tue Apr 24, 2018 8:06 am 
Offline
Member
Member
User avatar

Joined: Sun Jan 17, 2016 7:57 am
Posts: 51
Making some programs for my OS!

Image

Now I just need a way to open them from within the OS :)


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Tue Apr 24, 2018 3:32 pm 
Offline
Member
Member
User avatar

Joined: Sat Dec 27, 2014 9:11 am
Posts: 901
Location: Maadi, Cairo, Egypt
nakst wrote:
Making some programs for my OS!

Looks beautiful. Your list of files and the bar underneath "New folder" somehow remind me of Windows 7. Is there a disk image, source code repo, or website for us to take a look?

_________________
You know your OS is advanced when you stop using the Intel programming guide as a reference.


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Tue Apr 24, 2018 11:12 pm 
Offline
Member
Member
User avatar

Joined: Wed Aug 17, 2016 4:55 am
Posts: 251
nakst wrote:
Now I just need a way to open them from within the OS :)

Just make another program! :​P

No, seriously, in pretty much every modern OS the shell (desktop or whatever) is basically just the program it loads by default. And since you have a file manager it means you probably already have what's needed to make a basic desktop (heck, the desktop on Windows is just a glorified fullscreen instance of the file manager showing a rather specific folder).


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Wed Apr 25, 2018 1:06 am 
Offline
Member
Member
User avatar

Joined: Sun Jan 17, 2016 7:57 am
Posts: 51
omarrx024 wrote:
Looks beautiful. Your list of files and the bar underneath "New folder" somehow remind me of Windows 7. Is there a disk image, source code repo, or website for us to take a look?

Hi, the code can be found here: https://github.com/nakst/essence
And yeah, I use Windows 7 as a reference for the visual style :)


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Wed Apr 25, 2018 6:21 am 
Offline
Member
Member

Joined: Fri Sep 09, 2016 5:52 pm
Posts: 44
Location: Australia
nakst wrote:
omarrx024 wrote:
Looks beautiful. Your list of files and the bar underneath "New folder" somehow remind me of Windows 7. Is there a disk image, source code repo, or website for us to take a look?

Hi, the code can be found here: https://github.com/nakst/essence
And yeah, I use Windows 7 as a reference for the visual style :)

You should put the link to your repo in your signature so people who see any future posts know where to find your OS :D

_________________
My OS:
https://github.com/fido2020/Lemon-OS
https://lemonos.org
https://discord.gg/NAYp6AUYWM


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 3898 posts ]  Go to page Previous  1 ... 215, 216, 217, 218, 219, 220, 221 ... 260  Next

All times are UTC - 6 hours


Who is online

Users browsing this forum: Bing [Bot] and 60 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group