Initial chezmoi commit

This commit is contained in:
2019-04-15 00:05:48 -04:00
parent 69bb713ff4
commit fda3907f92
106 changed files with 8 additions and 562 deletions

View File

@@ -0,0 +1,8 @@
#!/bin/bash
. "/home/kevin/.cache/wal/colors.sh"
idle="$(mpstat 1 1 -P ALL | sed -n -e '4{p;q}' | awk '{print $NF}')"
used=$(echo 100 - "$idle" | bc)
used_rounded=$(printf %.0f "$used")
printf "%s%%\n\n%s\n" "$used_rounded" "$color7"