The WiFi indicator on the menubar can be misleading. Even though it says you're connected to WiFi, it doesn't always mean you're connected to the internet. This is especially true when on train/flight/hotel WiFi.
AnyMint continuously monitors your internet connection by sending a request to Google and visually displays the status using the AnyBar application. It changes the AnyBar icon to green when the connection is successful, showing the response time, and to red when there's a timeout.
AnyMint is built on top of AnyBar - a tiny Mac app that does one simple thing: it displays a colored dot on the menubar. What the dot means and when to change it is up to you.
-
Install AnyBar
brew install --cask anybar
-
Clone this repo
git clone https://github.com/ajot/AnyMint.git
- Python 3
- AnyBar application
pyanybar
Python libraryrequests
Python library
-
Create a virtual environment:
python3 -m venv venv
-
Activate the virtual environment:
source venv/bin/activate
-
Install the required Python libraries:
pip install pyanybar requests
-
Install the AnyBar application (if not already installed):
brew install --cask anybar
To run the script manually:
python check-internet-status.py
To have the script run automatically at login:
- Open Automator and create a new Application.
- Add a "Run Shell Script" action.
- Set the shell to
/usr/bin/python3
. - Paste the script content or call the script file, ensuring you activate the virtual environment first:
source /path/to/your/venv/bin/activate python /path/to/your/check-internet-status.py
- Save the Automator application.
- Add the Automator application to your Login Items in System Preferences > Users & Groups.
- The script is set to send a request to Google (
http://www.google.com
) by default. You can change this in thecheck_internet_connection
function. - The AnyBar port is set to 1738. Modify the
port
variable if needed. - The script checks the connection every 5 seconds. Adjust the
sleep(5)
line to change this interval.
- Ensure AnyBar is running before starting the script.
- Check that the AnyBar port matches in both the application and the script.
- For issues with Python libraries, ensure they are correctly installed in your virtual environment.
- If using the Automator method for automatic startup, make sure the paths to your virtual environment and script are correct.
- AnyBar project: https://github.com/tonsky/AnyBar
- pyanybar library
- requests library