Script to Check Internet Connection and Create Notification on Apple Mac
- Categories:
- notes
I’ve decided to create a script for my Mac to check internet connection and create notifications. After some research, surprisingly it’s very easy and I only need a few lines of shell script.
To trigger notification on Apple Mac only needs one line of Applescript. AppleScript can be run from the shell using /usr/bin/osascript
.
I use the ping
command to check internet connection. If the exit status is equal to zero, it means my Mac is connected to the internet.
Below is the completed script, you can get it on Github.
References:
Recent Posts
How to Defend Against Brute-Force and DoS Attacks with Fail2ban, Nginx limit_req, and iptables
In this tutorial, I’ll explain how to protect your public-facing Linux server and Nginx web server from common threats, including brute-force and DoS attacks.
Is Getting AWS Solutions Architect Associate Certification Worth It?
If you are a full-time Software Engineer, there's no strong need to pursue this certification.
DevSecOps
My Notes about DevSecOps
AWS Secrets Manager
Explanation about AWS Secrets Manager with example code.
Envelope Encryption
Envelope encryption is the practice of encrypting plaintext data with a data key, and then encrypting the data key under another key.