mirror of
https://github.com/DefectingCat/dotfiles
synced 2025-07-15 16:51:36 +00:00
10 lines
150 B
Bash
Executable File
10 lines
150 B
Bash
Executable File
#!/bin/bash
|
|
|
|
UPDATE=$(checkupdates | wc -l)
|
|
|
|
if [ ${UPDATE} -lt 1 ]; then
|
|
echo ""
|
|
else
|
|
echo "<span font='13' rise='1000'></span> ${UPDATE}"
|
|
fi
|