diff options
author | David Runge <dave@sleepmap.de> | 2016-03-11 10:42:47 +0100 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2016-03-11 10:42:47 +0100 |
commit | 811fa21a9df0c136cafab935b6882b7541a22203 (patch) | |
tree | 939e14e8137940ea343f787d93a3c2fd77574b30 /bin/get_cpu_status | |
parent | 5c859c1a873d5be412926ce5b06426791b5e78a0 (diff) | |
download | dotfiles-811fa21a9df0c136cafab935b6882b7541a22203.tar.gz dotfiles-811fa21a9df0c136cafab935b6882b7541a22203.tar.bz2 dotfiles-811fa21a9df0c136cafab935b6882b7541a22203.tar.xz dotfiles-811fa21a9df0c136cafab935b6882b7541a22203.zip |
bin/get_*: Adding helper scripts to be used in tmux.
Diffstat (limited to 'bin/get_cpu_status')
-rwxr-xr-x | bin/get_cpu_status | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bin/get_cpu_status b/bin/get_cpu_status new file mode 100755 index 0000000..2aece18 --- /dev/null +++ b/bin/get_cpu_status @@ -0,0 +1,10 @@ +#!/usr/bin/env bash +set -euo pipefail +IFS=$'\n\t' + +proc_output="" + +proc_output=$(grep 'cpu ' /proc/stat | awk '{usage=($2+$4)*100/($2+$4+$5)} END {printf("%5.1f", usage)}') +proc_output=${proc_output#" "} + +echo "$proc_output%" |