You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This Gnome extension displays the current network speed in the top bar of Ubuntu.
3
+
Network Speed Monitor is a GNOME extension that displays the current network speed on the top bar of your Ubuntu desktop. It provides a real-time view of your download and upload speeds, helping you monitor your network usage efficiently.
- Open GNOME Tweaks and navigate to the Extensions tab, thenenable the Network Speed Monitor extension.
30
+
- Alternatively, you can enable the extension using the command line:
31
+
```sh
32
+
gnome-extensions enable netspeed-monitor@ajxv
33
+
```
34
+
35
+
4. **Restart GNOME Shell:**
36
+
- Press `Alt + F2`, type`r`, and press `Enter` to restart GNOME Shell.
7
37
8
38
## Usage
9
39
10
-
After installing and enabling the extension, the current network speed will be displayed in the top bar of Ubuntu. The speed is updated every few seconds.
40
+
Once installed and enabled, the Network Speed Monitor extension will display the current download (↓) and upload (↑) speeds on the top bar of your Ubuntu desktop. The speeds are updated every few seconds based on the configured refresh interval.
41
+
42
+
## ScreenShot
43
+

44
+
45
+
## Technical Details: Network Speed Calculations
46
+
47
+
### Data Source
48
+
The extension reads network statistics from `/proc/net/dev`, a Linux kernel interface that provides cumulative network traffic statistics. This file contains rows for each network interface with various counters including bytes received (RX) and transmitted (TX).
49
+
50
+
### Speed Calculation Process
51
+
1. **Data Collection**
52
+
- The system reads `/proc/net/dev` every 3 seconds
0 commit comments