summarylogtreecommitdiffstats
path: root/throttlectl
diff options
context:
space:
mode:
authorQue Quotion2022-02-20 13:43:34 +0900
committerQue Quotion2022-02-20 13:43:34 +0900
commitb4e1f5ba36c3e7fedce9a1eb6e385524cb6adf3c (patch)
treeb76173cf13e4b414d79d975fe94584272b95ee11 /throttlectl
parent53253971591f91434d881b2ac506d9239a4deb91 (diff)
downloadaur-b4e1f5ba36c3e7fedce9a1eb6e385524cb6adf3c.tar.gz
fork those new printfs
Diffstat (limited to 'throttlectl')
-rwxr-xr-xthrottlectl4
1 files changed, 2 insertions, 2 deletions
diff --git a/throttlectl b/throttlectl
index 420373c882fd..f94cb049014a 100755
--- a/throttlectl
+++ b/throttlectl
@@ -278,11 +278,11 @@ while (( "$#" )); do
case "${1}" in
cut|powersave|start)
[[ -f /etc/throttle.d/powersave ]] && . /etc/throttle.d/powersave || config_help
- printf "0" > /etc/throttle.d/systemstate
+ printf "0" > /etc/throttle.d/systemstate &
;;
full|performance|stop)
[[ -f /etc/throttle.d/performance ]] && . /etc/throttle.d/performance || config_help
- printf "1" > /etc/throttle.d/systemstate
+ printf "1" > /etc/throttle.d/systemstate &
;;
esac