该脚本必须满足以下条件方可使用
1、必须为桌面环境
2、已安装notify-send命令
centos
yum install libnotify -y
ubuntu
apt-get install libnotify-bin -y
天气脚本
#!/bin/sh notify-send "$(w3m -dump "http://weather1.sina.cn/?code=$city" | sed '8d' | sed -n "7,14p")"
CPU使用率脚本
#!/bin/sh num=$(top -b -n 1 | sed -n '3p' | awk '{print $8}') cpu_use=$(awk -v y=$num 'BEGIN{printf "%.1f\n",100-y}') notify-send "CPU使用率:$cpu_use"