pkgkernel/notify.sh
2019-06-25 10:36:41 +02:00

16 lines
460 B
Bash
Executable File

#! /bin/bash
# Get icon
ICON=`pwd`/tux.png
# Get installed kernel version
CURRENT=`uname -r|cut -d'-' -f 1`
# Get last available stable version
INFO=`curl -Ls https://www.kernel.org/ | perl -lne 'BEGIN{$/=""} print "$1 $2" if \
/latest_link.*?<a.*?href=\"(.*?)\".*?>(.*?)</s'`
LASTVERSION=`echo ${INFO} | cut -d' ' -f 2`
if [ ${CURRENT} != ${LASTVERSION} ] ; then
PAT
notify-send -i ${ICON} "Kernel update" "Need version available (${LASTVERSION})"
fi