diff options
Diffstat (limited to '.config/eww/scripts/arch-updates.sh')
-rwxr-xr-x | .config/eww/scripts/arch-updates.sh | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/.config/eww/scripts/arch-updates.sh b/.config/eww/scripts/arch-updates.sh new file mode 100755 index 0000000..62bfe4a --- /dev/null +++ b/.config/eww/scripts/arch-updates.sh @@ -0,0 +1,40 @@ +#!/bin/bash + +function CheckUpdates() { +updates="$(checkupdates;paru -Qum)" +arch="$(checkupdates | wc -l)" +aur="$(paru -Qum | wc -l)" +number=$((arch+aur)) + +if [ "$number" -gt 0 ]; then + text=" $number" +else + text="" +fi + +echo "$text" +} + +function RefreshUpdates() { + value="$(CheckUpdates)" + eww update arch-updates="$value" +} + +function Update() { + foot 'paru' + RefreshUpdates +} + +case "$1" in + Refresh) + RefreshUpdates + exit 0 + ;; + Update) + Update + exit 0 + ;; + *) + CheckUpdates + exit 0 +esac |