It effectively changes the "show the day of the week" option for the menubar clock to "show the day of the week and date". For example, mine now says "Mon Nov 26 2001 5:40 AM"
Here's how to do it ... (if you're cautious, back up Clock.menu or just Clock)
- Fire up Terminal
cd /System/Library/CoreServices/Menu\ Extras/Clock.menu/Contents/MacOS/
sudo perl -p -i -e "s/%a /%x /" Clock- type in your admin password, obviously, for 'sudo'. If you are typing by hand, be extra sure to include the space after "%a" and the space after "%x".
- Logout and back in (or kill SystemUIServer, if you're into that sort of thing).
To put it back, change to the same directory and do:
sudo perl -p -i -e "s/%x /%a /" ClockThis is tested to work under 10.1.1. It should work fine on other versions, but no guarantees.
Eden

