pkgbuilds/base/parch-config-i3/src/etc/skel/.config/polybar/scripts/check-arch-updates.sh

14 lines
273 B
Bash
Raw Normal View History

2023-03-16 18:16:29 +03:30
#!/bin/sh
#source https://github.com/x70b1/polybar-scripts
#source https://github.com/polybar/polybar-scripts
if ! updates_arch=$(checkupdates 2> /dev/null | wc -l ); then
updates_arch=0
fi
if [ $updates_arch -gt 0 ]; then
echo $updates_arch
else
echo "0"
fi