2020-02-08 23:43:37 +00:00
|
|
|
#!/bin/sh
|
2019-11-23 21:23:24 +00: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-04-01 00:30:19 +00:00
|
|
|
sensors | awk '/Core 0/ {print "🌡", $3}'
|