Created
October 11, 2013 07:21
-
-
Save holyketzer/6930835 to your computer and use it in GitHub Desktop.
/etc/acpi/power.sh
and
/etc/rc.local For good laptop powersaving. I reccommend it!
This file contains 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
#!/bin/sh | |
if on_ac_power; then | |
echo "Power mode" | |
echo 0 > /proc/sys/vm/laptop_mode | |
echo 10 > /proc/sys/vm/dirty_ratio | |
echo 5 > /proc/sys/vm/dirty_background_ratio | |
echo 6000 > /proc/sys/vm/dirty_writeback_centisecs | |
echo 0 > /sys/module/snd_hda_intel/parameters/power_save | |
echo max_performance > /sys/class/scsi_host/host0/link_power_management_policy | |
echo max_performance > /sys/class/scsi_host/host1/link_power_management_policy | |
echo max_performance > /sys/class/scsi_host/host2/link_power_management_policy | |
echo max_performance > /sys/class/scsi_host/host3/link_power_management_policy | |
echo max_performance > /sys/class/scsi_host/host4/link_power_management_policy | |
echo max_performance > /sys/class/scsi_host/host5/link_power_management_policy | |
echo ondemand > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor | |
modprobe uvcvideo | |
echo default > /sys/module/pcie_aspm/parameters/policy | |
setpci -s 00:02.0 F4.B=FF | |
#hal-disable-polling --enable-polling --device /dev/cdrom | |
echo 0 > /sys/devices/system/cpu/sched_mc_power_savings | |
else | |
echo "Battery mode" | |
echo 5 > /proc/sys/vm/laptop_mode | |
echo 90 > /proc/sys/vm/dirty_ratio | |
echo 1 > /proc/sys/vm/dirty_background_ratio | |
echo 60000 > /proc/sys/vm/dirty_writeback_centisecs | |
echo 10 > /sys/module/snd_hda_intel/parameters/power_save | |
echo min_power > /sys/class/scsi_host/host0/link_power_management_policy | |
echo min_power > /sys/class/scsi_host/host1/link_power_management_policy | |
echo min_power > /sys/class/scsi_host/host2/link_power_management_policy | |
echo min_power > /sys/class/scsi_host/host3/link_power_management_policy | |
echo min_power > /sys/class/scsi_host/host4/link_power_management_policy | |
echo min_power > /sys/class/scsi_host/host5/link_power_management_policy | |
echo ondemand > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor | |
echo ondemand > /sys/devices/system/cpu/cpu1/cpufreq/scaling_governor | |
modprobe -r uvcvideo | |
echo powersave > /sys/module/pcie_aspm/parameters/policy | |
setpci -s 00:02.0 F4.B=40 | |
#hal-disable-polling --device /dev/cdrom | |
echo 1 > /sys/devices/system/cpu/sched_mc_power_savings | |
fi |
This file contains 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
#!/bin/sh -e | |
# | |
# rc.local | |
# | |
# This script is executed at the end of each multiuser runlevel. | |
# Make sure that the script will "exit 0" on success or any other | |
# value on error. | |
# | |
# In order to enable or disable this script just change the execution | |
# bits. | |
# | |
# By default this script does nothing. | |
# ... | |
echo OFF > /sys/kernel/debug/vgaswitcheroo/switch | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment