Difference between revisions of "Disable Call Ended Sound"

From WebOS Internals
Jump to navigation Jump to search
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
 
+
#Redirect [[Patch Phone Disable Missed-Dropped-Ended Call Sound]]
I have been looking for a way to turn this sound off since day one. I had applied the sound and messaging mod so everytime I ended a call my phone would chime out '''''"You got mail"''''' very irritating. I used this as my starting point. http://www.webos-internals.org/wiki/Patch_Phone_Disable_Missed-Dropped_Call_Sound
 
 
 
==Procedure==
 
1. Gain access to http://www.webos-internals.org/wiki/Portal:Accessing_Linux remount as writable and always backup:
 
<pre><nowiki>
 
mount -o remount rw, /
 
cp /usr/palm/applications/com.palm.app.phone/app/controllers/announcer-assistant.js /usr/palm/applications/com.palm.app.phone/app/controllers/announcer-assistant.js.bak</nowiki></pre>
 
 
 
 
 
2. Look for this line (line '''818''' on WebOS 1.1) <pre><nowiki>QDLogger.log( "announceDisconnectNormal"</nowiki></pre>
 
 
 
 
 
 
3. A few lines below that (lines 820-823):
 
 
 
<pre><nowiki>
 
                this.appControl.showBanner(
 
{
 
messageText: message,
 
soundClass: 'notifications'</nowiki></pre>
 
 
 
4. Delete 'notifications' leaving both apostrophes ''
 
 
 
<pre><nowiki>
 
                this.appControl.showBanner(
 
{
 
messageText: message,
 
soundClass: ''</nowiki></pre>
 
 
 
 
 
5. Save and quit vi <pre><nowiki>:wq </nowiki></pre>
 
 
 
6. Now restart the GUI
 
<pre><nowiki>
 
stop LunaSysMgr && start LunaSysMgr
 
</nowiki></pre>
 
 
 
7. Now remount read only
 
<pre><nowiki>
 
mount -o remount,ro /
 
</nowiki></pre>
 
 
 
 
 
No more sound!<br>
 
 
 
You will still get your popup message <br>
 
==Notes==
 
 
 
'''**(Do not delete the word message in above statement your phone will keep rebooting)**'''
 
This will not remove the message being shown.
 
 
 
Confirmed by Webby_S at PreCentral
 
 
 
 
 
http://forums.precentral.net/showthread.php?p=1796242&posted=1#post1796242
 

Latest revision as of 06:58, 1 August 2009