aboutsummaryrefslogtreecommitdiff
path: root/macos/.config/sketchybar/plugins/cpu.org
blob: 199d89b7248ee9f45fd7423b1ebd9d07950a2574 (plain)
1
2
3
4
5
6
7
#+title: SketchyBar CPU Plugin

Get the CPU percentage and display it.
#+begin_src sh :tangle ~/.config/sketchybar/plugins/cpu.sh :mkdirp yes :tangle-mode o755
  #!/bin/sh
  sketchybar --set "$NAME" icon='󰍛' label="$(top -l  2 | grep -E "^CPU" | tail -1 | awk '{ print $3 + $5"%" }')"
#+end_src