mirror of
https://github.com/lordmathis/dotfiles.git
synced 2025-11-06 17:54:25 +00:00
13 lines
200 B
Bash
Executable File
13 lines
200 B
Bash
Executable File
#!/bin/sh
|
|
|
|
updates_arch=$(checkupdates | wc -l)
|
|
updates_aur=$(pacaur -k | wc -l)
|
|
|
|
updates=$(("$updates_arch" + "$updates_aur"))
|
|
|
|
if [ "$updates" -gt 0 ]; then
|
|
echo " $updates"
|
|
else
|
|
echo ""
|
|
fi
|