PINE64

Full Version: Linux gkrellm launch
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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.

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!'
[attachment=712]
It looks like gkrellmlaunch.so failed to upload. I will pack it and try again.

jhawk