For the volume wake mod..
1. Grab android.policy.jar. You must have knowledge of baksmali. Extract the classes.dex from it.
2. java ājar baksmali.jar āo dex classes.dex where dex is the name of the directory it will be decompiled to.
3. Locate KeyguardViewMediator.smali and open it in something like notepad++, or gedit. Never use notepad.
4. Locate and delete these two entries: 0x18 -> :sswitch_7 and 0x19 -> :sswitch_7.
5. Recompile the classes.dex and copy it back into android.policy.jar. You must have knowledge of smali.
6. java -Xmx512M -jar smali.jar dex -o classes.dex .
7. Push back to phone and reboot. This method requires a custom kernel with adb root access.
8. adb remount
9. adb push android.policy.jar /system/framework
10. adb reboot
That's kinda complicated