Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ryan-willis/netivity
Network Interface Activity in the macOS Menu Bar
https://github.com/ryan-willis/netivity
macos macos-app menubar menubar-app monitor network
Last synced: 23 days ago
JSON representation
Network Interface Activity in the macOS Menu Bar
- Host: GitHub
- URL: https://github.com/ryan-willis/netivity
- Owner: ryan-willis
- License: mit
- Created: 2024-04-07T06:11:52.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-07-12T19:57:33.000Z (4 months ago)
- Last Synced: 2024-10-03T21:50:48.457Z (about 1 month ago)
- Topics: macos, macos-app, menubar, menubar-app, monitor, network
- Language: Python
- Homepage:
- Size: 399 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
#
Netivity
Network Interface Activity in the macOS Menu Bar
## Local Development
```sh
python3 -m venv venv
source venv/bin/activate
pip install -rrequirements.txt
```### Running the application
#### Prerequisites
Build the bandwith library using the following command:
```sh
cc -shared -fPIC -o bandwidth.dylib bandwidth.c
```Run the application:
```sh
python3 Netivity.py
```### Building the release version
The build command will create a standalone `.app` and a corresponding `.dmg` file in the `dist` directory.
```sh
./build.sh
```