Skip to content

Instantly share code, notes, and snippets.

@ArthurClune
Created March 7, 2012 13:33
Show Gist options
  • Save ArthurClune/1993154 to your computer and use it in GitHub Desktop.
Save ArthurClune/1993154 to your computer and use it in GitHub Desktop.
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