02-22-2017, 10:47 PM
I like to use Gkrellm2 on linux Desktop, the one plugin I use the most is gkrellmlaunch, it allows me to get everything done from a simple light weight interface. However, it is never included in distributions, I will attach same for access.
Here is a little script I fire from launch.
Here is a little script I fire from launch.
Code:
#!/bin/bash
#
# updater designed to keep system at latest state & clean
#
echo 'The following will be completed, Autoremove will require response.'
echo
echo 'Update, Upgrade, Dist-Upgrade, Autoremove and Clean'
echo
read -n1 -r -p "Press SPACE to continue or Ctrl+C to exit ... " key
echo
if [ "$key" = '' ]; then
echo "Continuing ..."
fi
echo
sudo apt-get update && sudo apt-get -y upgrade && sudo apt-get -y dist-upgrade && sudo apt-get autoremove && sudo apt-get clean
echo 'Have a nice day!'