I’m using OS X at my MBP as a main operation system and iStat Pro widget for Dashboard to monitor temps, processes, etc. After upgrading to OS X 10.8 Mountain Lion the processes section was not working.
Here is a small instruction to make processes be displayed again.
Open iStat Pro widget directory, it is located in
~/Library/Widgets/iStat\ Pro.wdgt/
or/Library/Widgets/iStat\ Pro.wdgt/
(in Finder you should useShow Package Contents
in context menu of the specified folder to open the widget’s contents);If you are using horizontal (wide) widget edit the
Wide.js
file and if vertical (tall) -Tall.js
;Find function
WideSkinController.prototype.updateProcesses = function(){
and replace allPID|$1
withPID| $1
(add space after pipe) in this section. So, you should get something like this:
1 2 3 4 5 6 7 8 9 10 11 |
|
- Restart the iStat Pro widget and the processes list will be working again!