Created
March 7, 2012 13:33
-
-
Save ArthurClune/1993154 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
For a MBP 13", intel integrated graphics. | |
Powersave settings: | |
Install mactel ppa plus macfanctl repo | |
Fan control: | |
arthur@jumpjet:~/Dropbox/rode_setup/home/bin$ more fan | |
#!/bin/sh | |
case $1 in | |
on) | |
modprobe coretemp | |
/etc/init.d/macfanctld start | |
;; | |
off) | |
/etc/init.d/macfanctld stop | |
rmmod coretemp | |
;; | |
esac | |
Powersave: | |
Edit /etc/default/grub | |
GRUB_CMDLINE_LINUX_DEFAULT="pcie_aspm=force i915.i915_enable_rc6=1 i915.i915_enable_fbc=1 i915.lvds_downclock=1" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment