mirror of
https://github.com/lordmathis/dotfiles.git
synced 2025-11-05 17:24:22 +00:00
10 lines
130 B
Bash
Executable File
10 lines
130 B
Bash
Executable File
#!/bin/sh
|
|
|
|
updates_arch=$(checkupdates | wc -l)
|
|
|
|
if [ "$updates_arch" -gt 0 ]; then
|
|
echo " $updates_arch"
|
|
else
|
|
echo ""
|
|
fi
|