Move startpage out of user-skel, update user scripts
This commit is contained in:
@ -6,29 +6,29 @@ ICON=/usr/share/icons/gnome/32x32/apps/system-software-update.png
|
||||
while true; do
|
||||
count=$(checkupdates | wc -l)
|
||||
if hash notify-send >/dev/null 2>&1; then
|
||||
if [ $count -gt 50 ]; then
|
||||
if [[ $count > 50 ]]; then
|
||||
notify-send -u critical -i $ICON \
|
||||
"You really need to update soon!!" "$count New package updates"
|
||||
elif [ $count -gt 25 ]; then
|
||||
elif [[ $count > 25 ]]; then
|
||||
notify-send -u normal -i $ICON \
|
||||
"You should update soon" "$count New package updates"
|
||||
elif [ $count -gt 5 ]; then
|
||||
elif [[ $count > 2 ]]; then
|
||||
notify-send -u low -i $ICON \
|
||||
"$count New package updates"
|
||||
fi
|
||||
fi
|
||||
|
||||
while [ "$count" -gt 0 ]; do
|
||||
if [ $count -eq 1 ]; then
|
||||
while [[ $count > 0 ]]; do
|
||||
if [[ $count == 1 ]]; then
|
||||
echo "$count Update"
|
||||
elif [ $count -gt 1 ]; then
|
||||
elif [[ $count > 1 ]]; then
|
||||
echo "$count Updates"
|
||||
fi
|
||||
sleep 8
|
||||
count=$(checkupdates | wc -l)
|
||||
done
|
||||
|
||||
while [ "$count" -eq 0 ]; do
|
||||
while [[ $count == 0 ]]; do
|
||||
echo $BAR_ICON
|
||||
sleep 1200
|
||||
count=$(checkupdates | wc -l)
|
||||
|
Reference in New Issue
Block a user