Archlinux basic installation configuration scripts
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
503 B

  1. #!/usr/bin/env bash
  2. count=0
  3. connected="說"
  4. disconnected="ﲁ"
  5. ID="$(ip link | awk '/state UP/ {print $2}')"
  6. while true; do
  7. if (ping -c 1 archlinux.org || ping -c 1 google.com || ping -c 1 bitbucket.org || ping -c 1 github.com || ping -c 1 sourceforge.net) &>/dev/null; then
  8. if [[ $ID == e* ]]; then
  9. echo "$connected Online" ; sleep 25
  10. else
  11. echo "$connected Online" ; sleep 25
  12. fi
  13. else
  14. echo "$disconnected Offline" ; sleep 5
  15. fi
  16. done