mirror of
https://github.com/Horhik/dotfiles.git
synced 2024-11-08 18:03:13 +00:00
14 lines
204 B
Bash
14 lines
204 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if ! updates=$(echo "n" | flatpak update 2> /dev/null | wc -l ); then
|
||
|
updates=0
|
||
|
fi
|
||
|
|
||
|
updates=$((updates - 5))
|
||
|
|
||
|
if [ "$updates" -gt 0 ]; then
|
||
|
echo "flatpak: $updates"
|
||
|
else
|
||
|
echo ""
|
||
|
fi
|