voidrice/.local/bin/statusbar/sb-cpu
Luke Smith 2619a88fcd
statusbar scripts now with sb- to avoid conflicts
update dwmblocks build to avoid errors
2020-12-25 08:02:50 -05:00

12 lines
389 B
Bash
Executable file

#!/bin/sh
case $BLOCK_BUTTON in
1) notify-send "🖥 CPU hogs" "$(ps axch -o cmd:15,%cpu --sort=-%cpu | head)\\n(100% per core)" ;;
2) setsid -f "$TERMINAL" -e htop ;;
3) notify-send "🖥 CPU module " "\- Shows CPU temperature.
- Click to show intensive processes.
- Middle click to open htop." ;;
6) "$TERMINAL" -e "$EDITOR" "$0" ;;
esac
sensors | awk '/Core 0/ {print "🌡" $3}'