Add conky rings app
parent
ef8a3e02b9
commit
832f3a2c2e
@ -0,0 +1,3 @@
|
||||
phoenixbyrd for the files
|
||||
chunky-milk for the scripts
|
||||
Botspot for coloring the theme
|
@ -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.
|
Binary file not shown.
After Width: | Height: | Size: 1.2 KiB |
Binary file not shown.
After Width: | Height: | Size: 4.8 KiB |
@ -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!"
|
@ -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
|
@ -0,0 +1 @@
|
||||
https://github.com/Botspot/rpi_conky/tree/master/conky_rings
|
Loading…
Reference in New Issue