15 lines
517 B
Bash
Executable file
15 lines
517 B
Bash
Executable file
#! /bin/bash
|
|
|
|
# Get icon
|
|
SCRIPTPATH="$( cd "$(dirname "$0")" ; pwd -P )"
|
|
ICON=${SCRIPTPATH}/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
|
|
notify-send -i ${ICON} "Kernel update" "New version available (${LASTVERSION})"
|
|
fi
|