2020-02-08 18:43:37 -05:00
|
|
|
#!/bin/sh
|
2019-11-23 16:23:24 -05:00
|
|
|
|
|
|
|
case $BLOCK_BUTTON in
|
|
|
|
1) notify-send "🖥 CPU hogs" "$(ps axch -o cmd:15,%cpu --sort=-%cpu | head)" ;;
|
|
|
|
3) notify-send "🖥 CPU module " "\- Shows CPU temperature.
|
|
|
|
- Click to show intensive processes.
|
|
|
|
- % is of single core." ;;
|
|
|
|
esac
|
|
|
|
|
2020-03-31 20:30:19 -04:00
|
|
|
sensors | awk '/Core 0/ {print "🌡", $3}'
|