summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorQue Quotion2017-04-06 15:23:53 +0900
committerQue Quotion2017-04-06 15:23:53 +0900
commit40bdf143875e539fd1f867ec4132bfd697deee50 (patch)
treed57686df42cab2fd144e32e54407d705be7b870f
parent617b4ccf35d693707e7ee2878535e731ac3e0f95 (diff)
downloadaur-40bdf143875e539fd1f867ec4132bfd697deee50.tar.gz
some extra input possibilities in case someone takes the archwiki literally; not bumping version
-rwxr-xr-xthrottle6
1 files changed, 3 insertions, 3 deletions
diff --git a/throttle b/throttle
index 247eade3293f..e41d9b018c6e 100755
--- a/throttle
+++ b/throttle
@@ -5,9 +5,9 @@ while (( "$#" )); do
#Find the number of physical cores (for hyperthreading control)
CORES="$(grep "^core id" /proc/cpuinfo | sort -u | wc -l)"
case "$1" in
- full|performance|cut|powersave)
+ full|performance|true|1|cut|powersave|false|0)
case "${1}" in
- full|performance)
+ full|performance|false|0)
HYPERTHREADS="1"
GOVERNOR="performance"
XPSTURBO="0"
@@ -30,7 +30,7 @@ while (( "$#" )); do
LEDBRIGHT="255"
NVPM="1"
;;
- cut|powersave)
+ cut|powersave|true|1)
HYPERTHREADS="0"
GOVERNOR="powersave"
XPSTURBO="1"