Simple update reminder for FreeBSD

Packages yad and pkg are needed This checks when you have run pkg last time This do not check freebsd-update, so modify the script if you want freebsd-update is located in /var/db/freebsd-update This script uses /var/cache/pkg time stamp Add the script to the startup applications freebsd-update-reminder.zip

Simple update reminder for antiX Linux

Simple reminder for checking updates. The script can link to the $HOME/.desktop-session/startup file. An example: echo ”./simple-update-reminder” >> $HOME/.desktop-session/startup Correct path to startup file if the script is not $HOME directory. For example if in directory $HOME/.config echo ”cd $HOME/.config && ./simple-update-reminder” >> $HOME/.desktop-session/startup simple-update-reminder.zip Code: #!/bin/bash # RJP 8.3.2025 simple update reminder for antiX Continue reading →

Update Notifier systemd

If you are using IceWM Desktop, you need to add $HOME/.icewm/startup file: cd /opt/UPDATE && ./PHASE2 & CAUTION! DO NOT INSTALL this non-systemd distro because it installs systemd !!! This is an experimental package, so bugs are possible !!! Update-Notifier-systemd-experimental.zip Works fine with IceWM desktop in Linux Mint 21 also

Simple update script for Rocky Linux

Packages zenity and xterm must be installed. The script: #!/bin/sh zenity –question –text ”Would you like to check and install updates?” if [ $? = 0 ]; then xterm -e ’sudo yum update && sleep 5’ && zenity –info –text ”System Upgraded” else exit 0 fi