Skip to content

Commit

Permalink
Move to version 18, add more helpers
Browse files Browse the repository at this point in the history
  • Loading branch information
nan0s7 committed Jun 18, 2019
1 parent eb95ac6 commit a470eeb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ nfancurve
---------
You are probably wondering why I have chosen to write this script in Bash. The reason is very simple; I wanted a script with the minimum number of dependencies possible. To get this script up-and-running you _technically_ only need the `temp.sh` file, and the `config` file.

The current version of the script is **version 17**.
The current version of the script is **version 18**.

This script is currently set up for Celsius. However, it can easily be modified for other temperature scales.

Expand Down Expand Up @@ -49,6 +49,8 @@ There are unofficial AUR packages maintained by [@Scrumplex](https://github.com/
- [@stefmitropoulos](https://github.com/stefmitropoulos), for greatly improving the way config files are loaded
- [@mklement0](https://stackoverflow.com/users/45375/mklement0), (stackoverflow) for a [POSIX implimentation](https://stackoverflow.com/questions/29832037/how-to-get-script-directory-in-posix-sh) of resolving file symlinks
- [@xberg](https://github.com/xberg), for finding and fixing a bug with the multi-GPU side of the script
- [@edave](https://github.com/edave), for helping test the initial implimentation of multi-fan GPU support
- [@louissmit](https://github.com/louissmit), for helping test the final multi-fan GPU feature implimentation

## TODO
- ~~make sure that "CoolBits" is enabled~~ - _not really the scope of this script_
Expand Down
2 changes: 1 addition & 1 deletion temp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ while getopts ":h :c: :d: :D :l :v :x :s:" opt; do
D) e=1; nohup ./temp.sh >/dev/null 2>&1 &;;
l) debug="1";;
s) sleep_override="$OPTARG";;
v) e=1; prf "Version 17";;
v) e=1; prf "Version 18";;
x) gpu_cmd="../nssim/nssim nvidia-settings";;
\?) e=1; prf "Invalid option: -$OPTARG" >&2;;
:) e=1; prf "Option -$OPTARG requires an argument." >&2;;
Expand Down

0 comments on commit a470eeb

Please sign in to comment.