dotfiles/dot_config/waybar/modules/executable_updates.sh
Hydroxycarbamide 1ff2d77058 Add waybar
2024-05-14 19:47:03 +02:00

10 lines
215 B
Bash

#!/usr/bin/env bash
pkg_updates() {
updates=$(pacman -Qu | wc -l)
aurupdates=$(paru -Qua | wc -l)
updates=$((updates + aurupdates))
if [ $updates -gt 0 ]; then
echo -n "$updates"
fi
}
pkg_updates