You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

141 lines
2.2 KiB

  1. # this is a comment
  2. # see CPUFREQD.CONF(5) manpage for a complete reference
  3. [General]
  4. pidfile=/var/run/cpufreqd.pid
  5. poll_interval=2
  6. verbosity=4
  7. #enable_remote=1
  8. #remote_group=root
  9. [/General]
  10. #[acpi]
  11. #acpid_socket=/var/run/acpid.socket
  12. #[/acpi]
  13. #[nforce2_atxp1]
  14. #vcore_path=/some/path
  15. #vcore_default=1500
  16. #[/nforce2_atxp1]
  17. #[sensors_plugin]
  18. #sensors_conf=/some/file
  19. #[/sensors_plugin]
  20. [Profile]
  21. name=On Demand High
  22. minfreq=37%
  23. maxfreq=100%
  24. policy=ondemand
  25. [/Profile]
  26. [Profile]
  27. name=On Demand Low
  28. minfreq=20%
  29. maxfreq=80%
  30. policy=ondemand
  31. [/Profile]
  32. [Profile]
  33. name=Performance High
  34. minfreq=100%
  35. maxfreq=100%
  36. policy=performance
  37. #exec_post=echo 8 > /proc/acpi/sony/brightness
  38. [/Profile]
  39. [Profile]
  40. name=Performance Low
  41. minfreq=80%
  42. maxfreq=80%
  43. policy=performance
  44. [/Profile]
  45. [Profile]
  46. name=Powersave High
  47. minfreq=70%
  48. maxfreq=70%
  49. policy=powersave
  50. [/Profile]
  51. [Profile]
  52. name=Powersave Low
  53. minfreq=30%
  54. maxfreq=30%
  55. policy=powersave
  56. [/Profile]
  57. #[Profile]
  58. #name=Conservative High
  59. #minfreq=33%
  60. #maxfreq=100%
  61. #policy=conservative
  62. #[/Profile]
  63. #
  64. #[Profile]
  65. #name=Conservative Low
  66. #minfreq=0%
  67. #maxfreq=66%
  68. #policy=conservative
  69. #[/Profile]
  70. ##
  71. # Basic states
  72. ##
  73. # when AC use performance mode
  74. [Rule]
  75. name=AC Rule
  76. ac=on # (on/off)
  77. profile=On Demand High
  78. [/Rule]
  79. # conservative mode when not AC
  80. [Rule]
  81. name=AC Off - Low Battery
  82. ac=off # (on/off)
  83. battery_interval=0-30
  84. #exec_post=echo 5 > /proc/acpi/sony/brightness
  85. profile=Powersave Low
  86. [/Rule]
  87. # conservative mode when not AC
  88. [Rule]
  89. name=AC Off - Medium Battery
  90. ac=off # (on/off)
  91. battery_interval=30-70
  92. #exec_post=echo 5 > /proc/acpi/sony/brightness
  93. profile=On Demand Low
  94. [/Rule]
  95. # stay in performance mode for the first minutes
  96. [Rule]
  97. name=AC Off - High Power
  98. ac=off # (on/off)
  99. battery_interval=70-100
  100. #exec_post=echo 5 > /proc/acpi/sony/brightness
  101. profile=On Demand High
  102. [/Rule]
  103. ##
  104. # Special Rules
  105. ##
  106. # CPU Too hot!
  107. [Rule]
  108. name=CPU Too Hot
  109. acpi_temperature=55-100
  110. cpu_interval=50-100
  111. profile=Performance Low
  112. [/Rule]
  113. # use performance mode if I'm watching a movie
  114. # I don't care for batteries!
  115. # But don't heat too much.
  116. [Rule]
  117. name=Movie Watcher
  118. programs=xine,mplayer,gmplayer
  119. battery_interval=0-100
  120. acpi_temperature=0-60
  121. profile=Performance High
  122. [/Rule]