 |
 |
Change blue background color on boot?
|
 |
|
 |
|
Dedicated MacNNer
Join Date: Dec 2003
Location: Madison, WI USA
Status:
Offline
|
|
Is there a way to change the default blue color OSX uses when booting and shutting down? I know how to change the image used but I would like to change the solid blue color also.
|
|
|
| |
|
|
|
 |
|
 |
|
Mac Elite
Join Date: May 2002
Location: New York City
Status:
Offline
|
|
Originally posted by servo:
Is there a way to change the default blue color OSX uses when booting and shutting down? I know how to change the image used but I would like to change the solid blue color also.
Nope, I don't believe it's possible to do that. I wish there was a way, though.
|
|
|
| |
|
|
|
 |
|
 |
|
Mac Elite
Join Date: Oct 2000
Status:
Offline
|
|
Originally posted by zachs:
Nope, I don't believe it's possible to do that. I wish there was a way, though.
I bet it's somewhere in the bootx file or something 
|
|
|
| |
|
|
|
 |
|
 |
|
Dedicated MacNNer
Join Date: Dec 2003
Location: dayton ohio
Status:
Offline
|
|
oh yeah...how Do you change the IMAGE?
|
|
|
| |
|
|
|
 |
|
 |
|
Dedicated MacNNer
Join Date: Dec 2003
Location: Madison, WI USA
Status:
Offline
|
|
Originally posted by themarvelous3:
oh yeah...how Do you change the IMAGE?
Replace /Library/Desktop Pictures/Aqua Blue.jpg with your image of choice.
|
|
|
| |
|
|
|
 |
|
 |
|
Mac Enthusiast
Join Date: Mar 2004
Location: Seattle
Status:
Offline
|
|
Originally posted by servo:
Replace /Library/Desktop Pictures/Aqua Blue.jpg with your image of choice.
Do you mean rename the image that you want to show as Aqua Blue.jpg?
|
|
|
| |
|
|
|
 |
|
 |
|
Dedicated MacNNer
Join Date: Dec 2003
Location: Madison, WI USA
Status:
Offline
|
|
Originally posted by eatinwokout:
Do you mean rename the image that you want to show as Aqua Blue.jpg?
Yup. Though I am curious where this is defined. There has to be a configuration file somewhere that defines this.
|
|
|
| |
|
|
|
 |
|
 |
|
Mac Elite
Join Date: Sep 2000
Location: Tempe, AZ
Status:
Offline
|
|
I seem to recall seeing this color hard-coded into BootX. BootX is available via the Darwin project, so conceivably, if you were ballsy and knowledgeably, you could change it and replace BootX with your hacked version.
|
Geekspiff - generating spiffdiddlee software since before you began paying attention.
|
| |
|
|
|
 |
|
 |
|
Dedicated MacNNer
Join Date: Dec 2003
Location: Madison, WI USA
Status:
Offline
|
|
Originally posted by smeger:
I seem to recall seeing this color hard-coded into BootX. BootX is available via the Darwin project, so conceivably, if you were ballsy and knowledgeably, you could change it and replace BootX with your hacked version.
I'm not convinced this is part of BootX. The color appears as the GUI is starting and the GUI is not Open Source. It could still be hard coded somewhere, but it does seem to me that it would not be in BootX.
The search continues....
|
|
|
| |
|
|
|
 |
|
 |
|
Grizzled Veteran
Join Date: Nov 2003
Location: Hebburn, UK
Status:
Offline
|
|
Amit Singh talks about BootX and what it does over at kernelthread.com in this article: http://www.kernelthread.com/mac/osx/arch_boot.html
Apparently, BootX draws the Apple Logo etc, so i imagine it does do the colour. Anyhoo - read the page I linked to (I read it months ago and can't really remember...), but it might be a variable stored somewhere in OpenFirmware...
|
|
Just who are Britain? What do they? Who is them? And why?
Formerly Black Book
|
| |
|
|
|
 |
|
 |
|
Dedicated MacNNer
Join Date: Dec 2003
Location: Madison, WI USA
Status:
Offline
|
|
I was just poking around and found the following:
Code:
/*
*
* Most fade operations done by apps and games are done around display
* configuration changes. This API adds control over a built-in fade
* effect when performing display configuration changes.
*
* The default fade effect on a display mode change uses a fade-out of
* 0.3 seconds and a fade-in of 0.5 seconds. Color fades to French Blue
* for a normal desktop, and black when displays are captured.
*
* CGConfigureDisplayFadeEffect sets the display fade time and color
* for a display reconfigure operation.
* Call after CGBeginDisplayConfiguration() and before
* calling CGCompleteDisplayConfiguration().
*
* When CGCompleteDisplayConfiguration() is called, a fade-out effect will be
* done prior to the display reconfiguration. When the display reconfiguration
* is complete, control returns to the calling program, while a fade-in effect
* runs asynchronously.
*/
CGError CGConfigureDisplayFadeEffect(CGDisplayConfigRef configRef,
CGDisplayFadeInterval fadeOutSeconds,
CGDisplayFadeInterval fadeInSeconds,
float fadeRed,
float fadeGreen,
float fadeBlue);
Found in /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/CGDisplayFade.h
I haven't poked arounf enough to make sense of it, this just seems interesting.
|
|
|
| |
|
|
|
 |
|
 |
|
Mac Elite
Join Date: Oct 2000
Status:
Offline
|
|
Originally posted by servo:
I was just poking around and found the following:
Code:
/*
*
* Most fade operations done by apps and games are done around display
* configuration changes. This API adds control over a built-in fade
* effect when performing display configuration changes.
*
* The default fade effect on a display mode change uses a fade-out of
* 0.3 seconds and a fade-in of 0.5 seconds. Color fades to French Blue
* for a normal desktop, and black when displays are captured.
*
* CGConfigureDisplayFadeEffect sets the display fade time and color
* for a display reconfigure operation.
* Call after CGBeginDisplayConfiguration() and before
* calling CGCompleteDisplayConfiguration().
*
* When CGCompleteDisplayConfiguration() is called, a fade-out effect will be
* done prior to the display reconfiguration. When the display reconfiguration
* is complete, control returns to the calling program, while a fade-in effect
* runs asynchronously.
*/
CGError CGConfigureDisplayFadeEffect(CGDisplayConfigRef configRef,
CGDisplayFadeInterval fadeOutSeconds,
CGDisplayFadeInterval fadeInSeconds,
float fadeRed,
float fadeGreen,
float fadeBlue);
Found in /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/CGDisplayFade.h
I haven't poked arounf enough to make sense of it, this just seems interesting.
Good find.. but umm.. is there any reason I wouldn't have that file? I'm in the folder but I don't see it... I don't know why you'd just have the source files in the default installation.
|
|
|
| |
|
|
|
 |
|
 |
|
Grizzled Veteran
Join Date: Nov 2003
Location: Hebburn, UK
Status:
Offline
|
|
That might be because it's in headers rather than resources.
|
|
Just who are Britain? What do they? Who is them? And why?
Formerly Black Book
|
| |
|
|
|
 |
|
 |
|
Dedicated MacNNer
Join Date: Dec 2003
Location: Madison, WI USA
Status:
Offline
|
|
Originally posted by Black Book:
That might be because it's in headers rather than resources.
Oops. pasted the wrong path.
|
|
|
| |
|
|
|
 |
|
 |
|
Mac Elite
Join Date: Sep 2000
Location: Tempe, AZ
Status:
Offline
|
|
Servo, that header is for use when changing the full-screen display from one thing to another. It does a quick fade in/out. One example is when doing a fast-user switch.
It's a cool API call, but nothing to do with the login color.
|
Geekspiff - generating spiffdiddlee software since before you began paying attention.
|
| |
|
|
|
 |
|
 |
|
Mac Elite
Join Date: Dec 2003
Location: In Your Computer
Status:
Offline
|
|
I seem to remember a program called Visage that could change certain login resources. I think that the same people who make those card games make it. Google it and you may find what youre looking for.
|

.: 15" PowerBook G4 - 1.5 GHz - 512 MB RAM - ATI Mobility Radeon 9700 128 MB VRAM - 80 GB HD @ 5400 rpm :.
|
| |
|
|
|
 |
|
 |
|
Dedicated MacNNer
Join Date: Dec 2003
Location: Madison, WI USA
Status:
Offline
|
|
Originally posted by smeger:
Servo, that header is for use when changing the full-screen display from one thing to another. It does a quick fade in/out. One example is when doing a fast-user switch.
It's a cool API call, but nothing to do with the login color.
Yeah, I just thought it was interesting. I was hoping maybe it would spur someone to look deeper and find the answer. 
|
|
|
| |
|
|
|
 |
|
 |
|
Mac Elite
Join Date: Jul 2002
Location: Montreal, Qc
Status:
Offline
|
|
You could cheat and make a boot panel the size of your resolution and thus cover the blue background...that's the only way i know of :/
|
Data Bytes Computers - Montreal, QC
Ventes & Services / Sales & Services
|
| |
|
|
|
 |
|
 |
|
Dedicated MacNNer
Join Date: Jan 2004
Location: N.Y.C.
Status:
Offline
|
|
|
|
|
|
| |
|
|
|
 |
|
 |
|
Forum Regular
Join Date: Apr 2003
Location: Santa Clara
Status:
Offline
|
|
well there was a hint in that Header File. It said that the screen would fade to French blue - the name given to that background color at boot. This is handled by the window server. It is the backfill it shows when there is nothing else to show. You could probably see it when logged in if you renamed the Dock and killed it ( the Dock normally shows the desktop picture when logged in)
|
|
|
| |
|
|
|
 |
 |
|
 |
|
|
|
|
|

|
|
 |
Forum Rules
|
 |
 |
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
|
HTML code is Off
|
|
|
|
|
|
 |
 |
 |
 |
|
 |
|