-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from razman786/development
Version 0.7.1: * Added sample i8kmon configuration file * Added Personal configuration to README * Updated screenshots in README * Added disclaimer to README
- Loading branch information
Showing
3 changed files
with
52 additions
and
5 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Sample i8kmon configuration file (/etc/i8kmon.conf, ~/.i8kmon). | ||
set config(auto) 1 | ||
|
||
# External program to control the fans | ||
set config(i8kfan) /usr/bin/i8kfan | ||
|
||
# Report status on stdout, override with --verbose option | ||
set config(verbose) 0 | ||
|
||
# Status check timeout (seconds), override with --timeout option | ||
set config(timeout) 2 | ||
|
||
# Temperature threshold at which the temperature is displayed in red | ||
set config(t_high) 95 | ||
|
||
# Temperature thresholds: {fan_speeds low_ac high_ac low_batt high_batt} | ||
# These were tested on the I8000. If you have a different Dell laptop model | ||
# you should check the BIOS temperature monitoring and set the appropriate | ||
# thresholds here. In doubt start with low values and gradually rise them | ||
# until the fans are not always on when the cpu is idle. | ||
|
||
# Dell XPS 7590 config | ||
set config(0) {{0 0} -1 60 -1 60} | ||
set config(1) {{1 1} 50 75 60 75} | ||
set config(2) {{2 2} 70 128 70 128} | ||
|
||
# Speed values are set here to avoid i8kmon probe them at every time it starts. | ||
# Dell XPS 7590 fan speeds | ||
set status(leftspeed) "0 2500 5100" | ||
set status(rightspeed) "0 2500 5100" | ||
|
||
# end of file |
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