27 lines
827 B
Bash
Executable File
27 lines
827 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"))
|
|
|
|
if [[ $updates -gt 50 ]]; then
|
|
printf '{"text": "%s", "alt": "require-updates", "tooltip": "%s Updates", "class": "red"}' "$updates" "$updates"
|
|
elif [[ $updates -gt 0 ]]; then
|
|
printf '{"text": "$s", "alt": "has-updates", "tooltip": "%s Updates", "class": "yellow"}' "$updates" "$updates"
|
|
else
|
|
printf '{"text": "%s", "alt": "updated", "tooltip": "%s Updates", "class": "green"}' "$updates" "$updates"
|
|
fi
|