1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2025-07-01 19:49:25 +00:00

First commit

This commit is contained in:
2019-07-18 18:45:46 +02:00
commit 9f98ffc84d
14 changed files with 962 additions and 0 deletions

View File

@ -0,0 +1,8 @@
#!/usr/bin/env bash
while true; do
UPDATES=$(checkupdates 2>/dev/null | wc -l)
[[ $UPDATES -gt 0 ]] && echo " $UPDATES" && sleep 30
[[ $UPDATES -eq 0 ]] && echo "" && sleep 300
done