What does your OS look like? (Screen Shots..)
- TheCool1Kevin
- Posts: 24
- Joined: Fri Oct 14, 2016 7:37 pm
- Location: Canada
- Contact:
Re: What does your OS look like? (Screen Shots..)
Wow! All those people with their awesome looking GUI
And all I have is a VESA text console
The BSOD isn't even blue
I do hope someone gets the Doctor Who reference
And all I have is a VESA text console
The BSOD isn't even blue
I do hope someone gets the Doctor Who reference
LiquiDOS, my weird hobbyist OS.
"Strive for progress, not perfection" - Anonymous
"Strive for progress, not perfection" - Anonymous
- bauen1
- Member
- Posts: 29
- Joined: Sun Dec 11, 2016 3:31 am
- Libera.chat IRC: bauen1
- Location: In your computer
- Contact:
Re: What does your OS look like? (Screen Shots..)
Finally got VESA graphics to work, now i just gotta clean up this mess of code and commit it to github
myunix (version 3) (name suggestions are welcome!)
GPG Key fingerprint: 5ED6 D826 ACD4 3F8E D9D4 FBB2 FF0A AF5E 0812 BA9C
GPG Key fingerprint: 5ED6 D826 ACD4 3F8E D9D4 FBB2 FF0A AF5E 0812 BA9C
Re: What does your OS look like? (Screen Shots..)
Great job!! Are you using GRUB to set your video mode?bauen1 wrote:Finally got VESA graphics to work, now i just gotta clean up this mess of code and commit it to github
OS: Basic OS
About: 32 Bit Monolithic Kernel Written in C++ and Assembly, Custom FAT 32 Bootloader
About: 32 Bit Monolithic Kernel Written in C++ and Assembly, Custom FAT 32 Bootloader
- bauen1
- Member
- Posts: 29
- Joined: Sun Dec 11, 2016 3:31 am
- Libera.chat IRC: bauen1
- Location: In your computer
- Contact:
Re: What does your OS look like? (Screen Shots..)
Yes
myunix (version 3) (name suggestions are welcome!)
GPG Key fingerprint: 5ED6 D826 ACD4 3F8E D9D4 FBB2 FF0A AF5E 0812 BA9C
GPG Key fingerprint: 5ED6 D826 ACD4 3F8E D9D4 FBB2 FF0A AF5E 0812 BA9C
Re: What does your OS look like? (Screen Shots..)
Will the user be able to choose his desired mode?bauen1 wrote:Yes
OS: Basic OS
About: 32 Bit Monolithic Kernel Written in C++ and Assembly, Custom FAT 32 Bootloader
About: 32 Bit Monolithic Kernel Written in C++ and Assembly, Custom FAT 32 Bootloader
- bauen1
- Member
- Posts: 29
- Joined: Sun Dec 11, 2016 3:31 am
- Libera.chat IRC: bauen1
- Location: In your computer
- Contact:
Re: What does your OS look like? (Screen Shots..)
Maybe depends if i'm have a driver for the graphics card or implemented a way to do the bios call to change mode.
myunix (version 3) (name suggestions are welcome!)
GPG Key fingerprint: 5ED6 D826 ACD4 3F8E D9D4 FBB2 FF0A AF5E 0812 BA9C
GPG Key fingerprint: 5ED6 D826 ACD4 3F8E D9D4 FBB2 FF0A AF5E 0812 BA9C
- bauen1
- Member
- Posts: 29
- Joined: Sun Dec 11, 2016 3:31 am
- Libera.chat IRC: bauen1
- Location: In your computer
- Contact:
Re: What does your OS look like? (Screen Shots..)
So changing your video memory pointer from a uint16 to a uint8 helps a lot
myunix (version 3) (name suggestions are welcome!)
GPG Key fingerprint: 5ED6 D826 ACD4 3F8E D9D4 FBB2 FF0A AF5E 0812 BA9C
GPG Key fingerprint: 5ED6 D826 ACD4 3F8E D9D4 FBB2 FF0A AF5E 0812 BA9C
Re: What does your OS look like? (Screen Shots..)
Actually putting some real effort into my UI/widget toolkit. Made a calculator as demonstration / test environment. Still a lot of work to do.
Re: What does your OS look like? (Screen Shots..)
Nice!
Buttons look really good through.
How do you get such precise numbers? 9 god'amn digits!
I'm sure that's not FPU!
Buttons look really good through.
How do you get such precise numbers? 9 god'amn digits!
I'm sure that's not FPU!
Re: What does your OS look like? (Screen Shots..)
That pi approximation was manually typed, but the calculator itself uses Python's parser and operators, so when floating point kicks in it gets ~17 digits.Lukand wrote:Nice!
Buttons look really good through.
How do you get such precise numbers? 9 god'amn digits!
I'm sure that's not FPU!
Here's an actual pi calculation and result:
Re: What does your OS look like? (Screen Shots..)
What's that blue line in the top window decoration?
Learn to read.
Re: What does your OS look like? (Screen Shots..)
It's supposed to be a stylish focus indicator (it's more apparent when you have non-focused windows to compare to), but people don't seem to like it. I'm working on a new decoration theme to go with my upcoming release; this one is quite old and based on a GTK theme I used to use many years ago.dozniak wrote:What's that blue line in the top window decoration?
Re: What does your OS look like? (Screen Shots..)
I actually quite like your current theme. Also, I would suggest you using something flat and minimalistic for you new theme. To make it look modern. Why aren't there any minimize/maximize buttons doe?klange wrote:It's supposed to be a stylish focus indicator (it's more apparent when you have non-focused windows to compare to), but people don't seem to like it. I'm working on a new decoration theme to go with my upcoming release; this one is quite old and based on a GTK theme I used to use many years ago.dozniak wrote:What's that blue line in the top window decoration?
OS: Basic OS
About: 32 Bit Monolithic Kernel Written in C++ and Assembly, Custom FAT 32 Bootloader
About: 32 Bit Monolithic Kernel Written in C++ and Assembly, Custom FAT 32 Bootloader
Re: What does your OS look like? (Screen Shots..)
It makes some sense in comparison, but for example try moving active window to the blue sky background over the pagodaklange wrote:It's supposed to be a stylish focus indicator (it's more apparent when you have non-focused windows to compare to), but people don't seem to like it. I'm working on a new decoration theme to go with my upcoming release; this one is quite old and based on a GTK theme I used to use many years ago.dozniak wrote:What's that blue line in the top window decoration?
Learn to read.
Re: What does your OS look like? (Screen Shots..)
@klange: really nice! I wish I was finished with all the things needed for a gui...