|
#1
| ||||
| ||||
| Startup Sound? I used to have a sound in my OLD OS startup items folder that would play after everything else finished... sort of an alert that startup was done. I guess I miss it... but can't seem to figure out if this can be done in OS X? if you put an aiff sound in the login items it will launch Quicktime that is not the desired effect... the sound should just play. Anyone know if this is possible? |
|
#2
| ||||
| ||||
| No. As far as I know, no. I wish OS X could, though. There might be a way by hacking into some of the resources so that it plays during the startup progress bar, but I assume that would be out of the range of knowledge of most of us. What I really liked in OS 9 was the fact that you could put a startup sound OR a startup MOVIE to be played during the progress bar when OS 9 first starts up. That's been in there for a long time, and I wish Apple had kept it with OS X. ![]()
__________________ -- simX Get Memory Usage Getter, the only Mac OS X utility that graphically displays the memory usage of your open processes! http://homepage.mac.com/simx/ 450 MHz G4 Cube | 15" flat-panel Apple Studio Display | 896 MB RAM | Que! Fire 12x10x32x FireWire CD-RW | OS X 10.1.5 Build 5S66 | Mac OS 9.2.2 | Telex M-560 Microphone | Epson Stylus Color 777 | TI-Graph Link USB | Pro Speakers/Mouse/Keyboard | Airport card | iPod "Some people's minds are like cement: all mixed up and permanently set..." -- Andrew Welch, el Presidente, Ambrosia Software, Inc. "You know that first hit of heroin is free." -- Scott McNealy, Sun Microsystem's CEO, on Microsoft's .NET . "The day Microsoft makes a product that doesn't suck is the day they start making vacuum cleaners." -- Unknown |
|
#3
| ||||
| ||||
| it's funny - most people want spring laoded folders, pop up folders, apple menu, etc, etc I want to be able to have a sound play without having to run Quicktime LOL like the old OS system sounds... Sorta strange the things we get used to. Cheers |
|
#4
| ||||
| ||||
| just stopped by versiontracker and saw you solved this problem! and you're not sharing here? c'mon eddie. ![]()
__________________ 20" 2ghz iMac G5 | 2GB ram | os 10.4 | 15" Ti PB 867 | 1 gb ram | os 10.3.9 | grape imacDV 400mhz | 512 mb ram | os10.2.8/9.2.2 | smc barricade router w/sbc yahoo dsl | HP psc-2355 all-in-one printer | graphire2 | Living happily ever after, every now and then |
|
#5
| ||||
| ||||
| ok, if you really wanted to do this, I think it can be done as follows: Make an mp3 of the sound. download and compile mpg123 (or just install a precompiled binary..). mpg123 is a command line utility for playing audio mpeg files (mpeg 1, 2, and 3). There is an faq at www.opensource.apple.com about creating startup items, so you could start with that. Basically, edit the startup items, and add /usr/sbin/mpg123 ~myname/Music/file.mp3 to one of the scripts. Here's how I would do it: Become root (sudo -s or su) cd /System/Library/StartupItems (I know you're supposed to use /Library/StartupItems, but I haven't confirmed this) mkdir StartSound cd StartSound pico StartupParameters.plist ok, now enter this into the file (this is all parafrazed from something else on my system, so I think itl work): { Description = "custom startup sound"; Provides = ("coolsound"); Requires = ("Disks", "Resolver", "Desktop DB", "Input Managers"); OrderPreference = "Late"; Messages = { start = "Starting cool sound..."; stop = "Stopping cool sound..."; }; } Thats all for that file, press control-x, press y, and hit return. Ok, now we need the script to be executed. It must be named the same as the folder it resides in. pico StartSound and put this in it: #!/bin/sh . /etc/rc.common if [ -d /usr/sbin/mpg123 ]; then ConsoleMessage "Playing Startup Sound" /usr/sbin/mpg123 ~blabla/Music/file.mp3 fi exit pico (make sure to save the file - control-x, press y, press return) now chmod the script so it can be executed: chmod 700 StartSound Ok, I think thats it. I haven't tried this, and it might not work at all, and it could really mess things up... but it might work. I think I'll try it tomarrow, I'll put it in, and if it fails to start up, boot into single user mode (apple-s) and remove the script. btw, make sure the location of mpg123 is the same as the location you specify in the script, and the same for the mp3, don't misplace it. It might be smart to put the mp3 in ~root just to make sure it doesn't get removed. Let me know if it works/blows up. I'll let yall know what it does on my comp... its freakin' 4am, so I'm going to bed.
__________________ irc.lfnet.net #kilonet -+=join in=+- Quote:
Audio Engineer - ProTools and Logic Pro Certified. FCC Licensed RF Technician |
|
#6
| ||||
| ||||
| Here's the url for creating Startup items: http://www.opensource.apple.com/proj...ter_HOWTO.html bed time for bonzo! |
|
#7
| ||||
| ||||
| Quote:
Quote:
Cheers |
|
#8
| ||||
| ||||
| Where is the program you built.. I didn't see anything like that on versiontracher.com thanks |
![]() |
| Thread Tools | |
|
|
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Any way to supress startup sound? | cybowolf | Mac OS X System & Mac Software | 7 | April 4th, 2003 01:07 PM |
| hack to modify startup sound in jaguar? | dtmdoc | Mac OS X System & Mac Software | 7 | November 29th, 2002 03:06 PM |
| Mac startup sound | martijnvandijk | Mac OS X System & Mac Software | 9 | September 8th, 2002 12:23 AM |
| Change sound input? | VicF | Apple News, Rumors & Discussion | 2 | March 24th, 2002 02:53 PM |
| Broken glass sound at startup? | markismo | Mac Classic System & Software | 2 | January 22nd, 2002 01:24 PM |