About this Mac applet - black glass

DOWNLOAD HERE

preview-8.png

Features:

Cool transparent window

Close button with rollover effect

Working buttons (opens sysdm.cpl and windows update)

And of course system information, except for the Macintosh HD

Doesn't require DesktopX to be installed.

Credits:

sala91 for giving this idea and to aquamac who provided a screenshot on his forum.

Enjoy!

#523459

If you could you need to have the processor information text wrap (see below) other than that it is real nice I was hoping for a hud version.

atmApplet.png

#523471

What I need to run it and how pls....

#523477

And of course system information, except for the Macintosh HD

Not sure if it was just intended to show "Macintosh HD", but if you want to get the startup disk name:

char sysdir[MAX_PATH];

GetSystemDirectory(sysdir, MAX_PATH);

sysdir[3] = 0; // trim to first three letters, e.g. "C:"

char startup_disk[100];

GetVolumeInformation (sysdir, startup_disk, 100, NULL, NULL, NULL, NULL, 0);

And there you should get the startup disk.

#523503

If you could you need to have the processor information text wrap (see below) other than that it is real nice I was hoping for a hud version.

That's a long name lol, i'll see what i can do.

What I need to run it and how pls....

It's standalone.

Not sure if it was just intended to show "Macintosh HD", but if you want to get the startup disk name:

char sysdir[MAX_PATH];

GetSystemDirectory(sysdir, MAX_PATH);

sysdir[3] = 0; // trim to first three letters, e.g. "C:"

char startup_disk[100];

GetVolumeInformation (sysdir, startup_disk, 100, NULL, NULL, NULL, NULL, 0);

And there you should get the startup disk.

Will this work under DesktopX?

#523518

Will this work under DesktopX?

Mmm... probably not... is C code. Is there some way to call .dll / Windows API from DesktopX?

Edit

I just checked Stardock's developer page:

http://www.stardock.com/products/desktopx/development.html

I guess I should write an SDPlugin for this, but I dunno how to test it with your applet.

#523520