35 lines
845 B
Bash
Executable File
35 lines
845 B
Bash
Executable File
#!/bin/sh
|
|
# Requires pacman-contrib trizen
|
|
|
|
# Define threshholds for color indicators
|
|
threshhold_green=0
|
|
threshhold_yellow=25
|
|
threshhold_red=100
|
|
|
|
# Calculate available updates pacman and aur (with trizen)
|
|
if ! updates_arch=$(checkupdates 2> /dev/null | wc -l ); then
|
|
updates_arch=0
|
|
fi
|
|
|
|
if ! updates_aur=$(trizen -Su --aur --quiet | wc -l); then
|
|
updates_aur=0
|
|
fi
|
|
|
|
updates=$(("$updates_arch" + "$updates_aur"))
|
|
|
|
|
|
css_class="green"
|
|
if [ "$updates" -gt $threshhold_yellow ]; then
|
|
css_class="yellow"
|
|
fi
|
|
|
|
if [ "$updates" -gt $threshhold_red ]; then
|
|
css_class="red"
|
|
fi
|
|
|
|
if [ "$updates" -gt $threshhold_green ]; then
|
|
printf '{"text": "%s", "alt": "%s", "tooltip": "%s Updates", "class": "%s"}' "$updates" "$updates" "$updates" "$css_class"
|
|
else
|
|
printf '{"text": "0", "alt": "0", "tooltip": "0 Updates", "class": "green", ""}'
|
|
fi
|