diff --git a/apps/Conky Rings/credits b/apps/Conky Rings/credits new file mode 100644 index 0000000..5b8a4ff --- /dev/null +++ b/apps/Conky Rings/credits @@ -0,0 +1,3 @@ +phoenixbyrd for the files +chunky-milk for the scripts +Botspot for coloring the theme diff --git a/apps/Conky Rings/description b/apps/Conky Rings/description new file mode 100644 index 0000000..2aadc5d --- /dev/null +++ b/apps/Conky Rings/description @@ -0,0 +1,2 @@ +Animated gauges and graphs of your system, on your desktop. +Displays system uptime, core-specific CPU usage, CPU speed, CPU temperature, top 5 processes by CPU usage, storage usage for boot and root partitions, RAM usage, SWAP usage, top 5 processes by RAM usage, and describes the current Linux environment. diff --git a/apps/Conky Rings/icon-24.png b/apps/Conky Rings/icon-24.png new file mode 100644 index 0000000..f36df84 Binary files /dev/null and b/apps/Conky Rings/icon-24.png differ diff --git a/apps/Conky Rings/icon-64.png b/apps/Conky Rings/icon-64.png new file mode 100644 index 0000000..6f747e5 Binary files /dev/null and b/apps/Conky Rings/icon-64.png differ diff --git a/apps/Conky Rings/install b/apps/Conky Rings/install new file mode 100755 index 0000000..5542722 --- /dev/null +++ b/apps/Conky Rings/install @@ -0,0 +1,42 @@ +#!/bin/bash + +DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")" + +function error { + echo -e "\\e[91m$1\\e[39m" + exit 1 +} + +if [ -f "$HOME/.conkyrc" ]; then + error "Another Conky theme is already installed! Uninstall the original app (Or delete $HOME/.conkyrc), then try again." +fi + +# Get dependencies +"${DIRECTORY}/pkg-install" "conky-all lua50" "$(dirname "$0")" || exit 1 + +#get conkyrc +wget -O ~/.conkyrc https://raw.githubusercontent.com/Botspot/rpi_conky/master/conky_rings/.conkyrc || error "Failed to get .conkyrc!" + +#get fonts to ~/.local/share/fonts +mkdir -p ~/.local/share/fonts && cd ~/.local/share/fonts || error "Failed to create and enter $HOME/.local/share/fonts folder!" +wget https://github.com/Botspot/rpi_conky/raw/master/conky_rings/fonts.tar.gz || error "Failed to download the required fonts!" +tar -xvf fonts.tar.gz || error "Failed to extract the required fonts!" +rm -f fonts.tar.gz || error "Failed to remove fonts archive!" +#remove unnecessary file extracted from the tar.gz +rm -f .uuid || error "Failed to delete unnecessary .uuid file!" + +#get rings.lua +wget -O ~/.conky_rings.lua https://raw.githubusercontent.com/Botspot/rpi_conky/master/conky_rings/.conky_rings.lua || error "Failed to download conky-rings.lua!" + +#run conky this time +conky -q -d -p 3 & + +#make autostart entry to run it next time +mkdir -p ~/.config/autostart +echo "[Desktop Entry] +Name=Conky +Type=Application +Exec=bash -c 'sleep 5;conky -q -d -p 3' +Terminal=false +Comment=system monitoring tool. +Categories=Utility;" > ~/.config/autostart/conky.desktop || error "Failed to create desktop entry!" diff --git a/apps/Conky Rings/uninstall b/apps/Conky Rings/uninstall new file mode 100755 index 0000000..1819dae --- /dev/null +++ b/apps/Conky Rings/uninstall @@ -0,0 +1,14 @@ +#!/bin/bash + +DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")" + +function error { + echo -e "\\e[91m$1\\e[39m" + exit 1 +} + +"${DIRECTORY}/purge-installed" "$(dirname "$0")" || exit 1 + +rm -f ~/.config/autostart/conky.desktop ~/.conky-rings.lua ~/.conkyrc || error "Failed to remove autostart file or .conkyrc or .conky-rings.lua!" + +killall conky 2>/dev/null diff --git a/apps/Conky Rings/website b/apps/Conky Rings/website new file mode 100644 index 0000000..e486a9a --- /dev/null +++ b/apps/Conky Rings/website @@ -0,0 +1 @@ +https://github.com/Botspot/rpi_conky/tree/master/conky_rings