Merge pull request #722 from lemarsu/master

fix: Remove dependency of bc for load widget
pull/22/head
Ben Hilburn 7 years ago committed by GitHub
commit d4a3c045ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -983,9 +983,9 @@ prompt_load() {
# Replace comma
load_avg=${load_avg//,/.}
if [[ "$load_avg" -gt $(bc -l <<< "${cores} * 0.7") ]]; then
if [[ "$load_avg" -gt $((${cores} * 0.7)) ]]; then
current_state="critical"
elif [[ "$load_avg" -gt $(bc -l <<< "${cores} * 0.5") ]]; then
elif [[ "$load_avg" -gt $((${cores} * 0.5)) ]]; then
current_state="warning"
else
current_state="normal"

Loading…
Cancel
Save