add sketchybar mac settings and plugins, add skhd new key binds

This commit is contained in:
cainnz
2024-05-01 00:43:14 -07:00
parent 7862f4cfd1
commit bc680e8bb8
19 changed files with 747 additions and 3 deletions

View File

@@ -0,0 +1,10 @@
#!/bin/bash
CORE_COUNT=$(sysctl -n machdep.cpu.thread_count)
CPU_INFO=$(ps -eo pcpu,user)
CPU_SYS=$(echo "$CPU_INFO" | grep -v $(whoami) | sed "s/[^ 0-9\.]//g" | awk "{sum+=\$1} END {print sum/(100.0 * $CORE_COUNT)}")
CPU_USER=$(echo "$CPU_INFO" | grep $(whoami) | sed "s/[^ 0-9\.]//g" | awk "{sum+=\$1} END {print sum/(100.0 * $CORE_COUNT)}")
CPU_PERCENT="$(echo "$CPU_SYS $CPU_USER" | awk '{printf "%.0f\n", ($1 + $2)*100}')"
sketchybar --set $NAME label="$CPU_PERCENT%"