Add new bin scripts

This commit is contained in:
Gregory Eremin
2020-09-12 09:59:24 +02:00
parent 9b3ff362cf
commit 5f10a0fc70
13 changed files with 204 additions and 37 deletions
+9
View File
@@ -0,0 +1,9 @@
#!/bin/bash
# Used by waybar
# Returns a message when there is more than 50 packages available for update
nupdates=$(checkupdates | wc -l)
if [ $nupdates -gt 50 ]; then
echo "  $nupdates "
fi