blob: dfd21e46ed0d7938d4d69c9b4d0e933c864ce360 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
if ! command -v yay >/dev/null 2>&1; then
notify-send "awesomewm widget error" "the 'yay' package is required for the widget to work."
else
yay -Sy >/dev/null
count=$(yay -Qu | wc -l)
echo " 📤 $count"
fi
|