vote up 2 vote down star
2

I want to create analog of program conky. What is the best way to draw information on a OS X desktop?

flag

3 Answers

vote up 4 vote down check

NSWindow has a method, setLevel:, that lets you control how the window is positioned compared to other windows. From my own experience, you might want to try feeding it kCGDesktopIconWindowLevel, and calling setHasShadow:NO to implement the look you want. To actually do the drawing you would put a custom NSView subclass in your window, and create the window without a frame (see NSBorderlessWindowMask) and transparent ([window setBackgroundColor:[NSColor clearColor]], [self setOpaque:NO];).

You might also want to take a look at this article to keep your window pinned to the desktop during an Expose event.

link|flag
The DontExposeMe hack breaks compatibility with Spaces. I wouldn't recommend it. Fortunately, if your window is at the desktop-icon level, Exposé shouldn't touch it. – Peter Hosey Jan 7 '09 at 4:12
vote up 0 vote down

Have you tried GeekTool? Maybe you don't even have to write the app. ☺

link|flag
vote up 0 vote down

You need to take a look at using NSWindowLevel with a transparent window.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.