PINE64
Linux gkrellm launch - Printable Version

+- PINE64 (https://forum.pine64.org)
+-- Forum: PINE A64(+) (https://forum.pine64.org/forumdisplay.php?fid=4)
+--- Forum: Linux on Pine A64(+) (https://forum.pine64.org/forumdisplay.php?fid=6)
+--- Thread: Linux gkrellm launch (/showthread.php?tid=3825)



Linux gkrellm launch - jhawk - 02-22-2017

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!'



RE: Linux gkrellm launch - jhawk - 02-23-2017


.gz   gkrellmlaunch.so.tar.gz (Size: 31.15 KB / Downloads: 388)
It looks like gkrellmlaunch.so failed to upload. I will pack it and try again.

jhawk