What does your OS look like? (Screen Shots..)
Re: What does your OS look like? (Screen Shots..)
toaruos: all your base are belong to us
-
- Member
- Posts: 58
- Joined: Sat Aug 01, 2015 9:05 pm
Re: What does your OS look like? (Screen Shots..)
Now i'm confused... is this the sortix kernel installed on Toaru's shell? or something...sortie wrote:
toaruos: all your base are belong to us
"That I'm in forum signatures is just a sign the invasion of sortie is nearing completion. Soon you'll all have to become me to defeat me." ~ Sortie
Re: What does your OS look like? (Screen Shots..)
It's 100% Sortix, with a port of the toaru compositor and terminal.
-
- Member
- Posts: 58
- Joined: Sat Aug 01, 2015 9:05 pm
Re: What does your OS look like? (Screen Shots..)
WOWsortie wrote:It's 100% Sortix, with a port of the toaru compositor and terminal.
This is more impressive than I had thought! Good work again Sortie.
"That I'm in forum signatures is just a sign the invasion of sortie is nearing completion. Soon you'll all have to become me to defeat me." ~ Sortie
- jojo
- Member
- Posts: 138
- Joined: Mon Apr 18, 2016 9:50 am
- Libera.chat IRC: jojo
- Location: New York New York
Re: What does your OS look like? (Screen Shots..)
I have nothing more useful to say than:
THIS
IS SO
EFFING
COOL
What are the build deps for yutani? I kind of want to build it for BSD now.
THIS
IS SO
EFFING
COOL
What are the build deps for yutani? I kind of want to build it for BSD now.
- Kazinsal
- Member
- Posts: 559
- Joined: Wed Jul 13, 2011 7:38 pm
- Libera.chat IRC: Kazinsal
- Location: Vancouver
- Contact:
Re: What does your OS look like? (Screen Shots..)
Holy $expletive.
Impressive work. Now I really need to get something unique and interesting working...
Impressive work. Now I really need to get something unique and interesting working...
Re: What does your OS look like? (Screen Shots..)
sortie's port uses Unix sockets and mmap shared memory for IPC; you need an interface to keyboard scancodes and mouse data (I use a packet interface, sortie does raw PS/2 scancodes; since you're on BSD there's probably something closer to packets for USB and whatnot); you'll need access to a 32bpp RGBA framebuffer (limitations in Cairo, we could support 24bpp if we tried); software deps include a few Toaru libraries you should be able to port, plus Cairo/pixman, freetype (not used directly by the compositor), libpng (somewhat optional, but you'll want it for the panel/wallpaper, and the compositor uses it for the mouse cursor normally) and a sufficient C library.jojo wrote:What are the build deps for yutani? I kind of want to build it for BSD now.
I am working to get Yutani and some of the more general-purpose apps pulled out of ToaruOS and integrate sortie's patches upstream so we can build for other platforms more easily. Some of the changes sortie made will be best supported by adding features to ToaruOS, though. I'd like to get a Linux port running under SDL or something, would ease application development a bit.
Re: What does your OS look like? (Screen Shots..)
WOW!sortie wrote:
toaruos: all your base are belong to us
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.
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.
- bellezzasolo
- Member
- Posts: 110
- Joined: Sun Feb 20, 2011 2:01 pm
Re: What does your OS look like? (Screen Shots..)
Yep, I'm 17. High school too. I've gone through so many versions though...
Whoever said you can't do OS development on Windows?
https://github.com/ChaiSoft/ChaiOS
https://github.com/ChaiSoft/ChaiOS
Re: What does your OS look like? (Screen Shots..)
WOW! I thought you just posted Linux with terminals!sortie wrote:
toaruos: all your base are belong to us
-
- Member
- Posts: 501
- Joined: Wed Jun 17, 2015 9:40 am
- Libera.chat IRC: glauxosdever
- Location: Athens, Greece
Re: What does your OS look like? (Screen Shots..)
Hi,
I implemented ANSI escape sequences (sadly only the 'm' commands), and now my kernel is able to write differently coloured text to the framebuffer.
Regards,
glauxosdever
I implemented ANSI escape sequences (sadly only the 'm' commands), and now my kernel is able to write differently coloured text to the framebuffer.
Regards,
glauxosdever
-
- Posts: 1
- Joined: Sun Jun 12, 2016 7:06 am
What does your OS look like? (Screen Shots..)
I'm actually developing my own os (named Chicago), actually booted via grub, detect up to 64MB of ram, show the date/time using cmos, and have a basic text mode driver (detect if is mono color, or multi colour).
I am 13 years old and sorry if my english isn't so good, it's because i am from Brazil.
I am 13 years old and sorry if my english isn't so good, it's because i am from Brazil.
Re: What does your OS look like? (Screen Shots..)
I finally switched to graphics mode! See below.
I also implemented multitasking a while ago. This is a demonstration of 2 tasks writing either X or O to a terminal.
Last, I also implemented a "log" view. This view contains all logging output provided to the Logger Service:
I also implemented multitasking a while ago. This is a demonstration of 2 tasks writing either X or O to a terminal.
Last, I also implemented a "log" view. This view contains all logging output provided to the Logger Service:
My blog: http://www.rivencove.com/
- CorruptedByCPU
- Member
- Posts: 78
- Joined: Tue Feb 11, 2014 4:59 pm
Re: What does your OS look like? (Screen Shots..)
Every process gets random time to work?dseller wrote:I also implemented multitasking a while ago. This is a demonstration of 2 tasks writing either X or O to a terminal.
https://blackdev.org/ - system programming, my own 64 bit kernel and software.