organize into folders for each device.

This commit is contained in:
pim-wtf
2022-04-24 07:44:06 +02:00
parent a7dfd262af
commit cc4d0b5da3
32 changed files with 473 additions and 121 deletions

View File

@ -0,0 +1,9 @@
#!/bin/sh
updates=$(xbps-install -Mun 2> /dev/null | wc -l)
if [ -n "$updates" ] && [ "$updates" -gt 0 ]; then
echo "$updates"
else
echo ""
fi