Skip to content

Commit 527712d

Browse files
authored
New Version (#23)
* Added new better icons. * Changed the detection of network devices via signals. * Added disks space monitoring. * Added the ability to show multiple disks at the same time. * Added backward compatibility with gnome 3.28, 3.30 * Added the position of icons. * Added swap monitoring: thanks to @henrique3g * Removed deprecated functions.
1 parent 7d4bfa7 commit 527712d

25 files changed

+2708
-1685
lines changed

README.md

Lines changed: 36 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,70 +1,70 @@
11
# Resource_Monitor
2-
Resource_Monitor is a Gnome Shell extension that Monitor the use of system resources like cpu, ram, disk, network and display them in gnome shell top bar.
2+
Resource_Monitor is a GNOME Shell extension that Monitor the use of system resources like cpu, ram, disk, network and display them in GNOME shell top bar.
33

44
# Screenshots
5-
![](https://github.com/Ory0n/Resource_Monitor/blob/master/main.png)
5+
![](https://github.com/0ry0n/Resource_Monitor/blob/master/main.png)
6+
7+
# GNOME Shell versions supported
8+
**3.28, 3.30, 3.32, 3.34, 3.36, 3.38**
69

710
# How-To Install
811
## Download
912
You can get this extension:
1013

11-
- From [Gnome Extensions](https://extensions.gnome.org/extension/1634/resource-monitor/).
12-
- Downloading the latest [Release](https://github.com/Ory0n/Resource_Monitor/releases) released on GitHub.
13-
- Cloning the [Master](https://github.com/Ory0n/Resource_Monitor/tree/master) repository.
14+
- From [GNOME Extensions](https://extensions.gnome.org/extension/1634/resource-monitor/).
15+
- Downloading the latest [Release](https://github.com/0ry0n/Resource_Monitor/releases) released on GitHub.
16+
- Cloning the [Master](https://github.com/0ry0n/Resource_Monitor/tree/master) repository.
1417
## Install
1518
### Using the latest release
1619
1. Unzip the file `Resource_Monitor-x.zip`.
17-
2. Move the `Resource_Monitor-x` folder to `~/.local/share/gnome-shell/extensions/Resource_Monitor@Ory0n`.
18-
3. Activate the extensions with Gnome Extensions.
20+
2. Open `Resource_Monitor-x` folder.
21+
3. Move `Resource_Monitor@Ory0n` folder to `~/.local/share/gnome-shell/extensions/Resource_Monitor@Ory0n`.
22+
4. Activate the extensions with Gnome Extensions.
1923

2024
For example...
2125
```
2226
unzip Resource_Monitor-x.zip
23-
mv Resource_Monitor-x ~/.local/share/gnome-shell/extensions/Resource_Monitor@Ory0n
27+
cd Resource_Monitor-x
28+
mv Resource_Monitor@Ory0n ~/.local/share/gnome-shell/extensions/Resource_Monitor@Ory0n
2429
2530
gnome-extensions enable Resource_Monitor@Ory0n
2631
```
2732

2833
### Cloning the repository
2934
1. Clone the Master repository.
30-
2. Move the `Resource_Monitor` folder to `~/.local/share/gnome-shell/extensions/Resource_Monitor@Ory0n`.
31-
3. Activate the extensions with Gnome Extensions.
35+
2. Open `Resource_Monitor` folder.
36+
3. Move `Resource_Monitor@Ory0n` folder to `~/.local/share/gnome-shell/extensions/Resource_Monitor@Ory0n`.
37+
4. Activate the extensions with Gnome Extensions.
3238

3339
For example...
3440
```
35-
git clone https://github.com/Ory0n/Resource_Monitor
36-
mv Resource_Monitor ~/.local/share/gnome-shell/extensions/Resource_Monitor@Ory0n
41+
git clone https://github.com/0ry0n/Resource_Monitor
42+
cd Resource_Monitor
43+
mv Resource_Monitor@Ory0n ~/.local/share/gnome-shell/extensions/Resource_Monitor@Ory0n
3744
3845
gnome-extensions enable Resource_Monitor@Ory0n
3946
```
4047
Might require a Gnome restart. Press `ALT+F2` and type `r` and hit enter.
4148

42-
# General Settings
43-
![](https://github.com/Ory0n/Resource_Monitor/blob/master/settings.png)
44-
45-
- **Refresh Time:** Choose the refresh interval, from 1 to 30 seconds.
46-
- **Display Icons:** Display or hide the icons.
47-
- **Display Decimals:** Display or hide decimal numbers.
48-
- **System Monitor:** Show or not Gnome System Monitor when clicking on extension.
49-
- **Display Cpu:** Display or hide the Cpu field.
50-
- **Modify Width Cpu:** Resize the Cpu field.
51-
- **Display Ram:** Display or hide the Ram field.
52-
- **Modify Width Ram:** Resize the Ram field.
53-
- **Display Disk:** Display or hide the Disk field.
54-
- **Chose Disk:** Lets you choose the drive or memory partition to monitor.
55-
- **Modify Width Disk:** Resize the Disk field.
56-
- **Auto Hide Net:** If enabled, it automatically hides the unused network interface field.
57-
- **Display Eth:** Display or hide the Ethernet field.
58-
- **Modify Width Eth:** Resize the Eth field.
59-
- **Display Wlan:** Display or hide the Wlan field.
60-
- **Modify Width Wlan:** Resize the Wlan field.
61-
62-
![](https://github.com/Ory0n/Resource_Monitor/blob/master/system-monitor.png)
49+
# Preferences
50+
![](https://github.com/0ry0n/Resource_Monitor/blob/master/settings.png)
51+
52+
![](https://github.com/0ry0n/Resource_Monitor/blob/master/system-monitor.png)
6353

6454
# Bug Reporting
65-
Use the GitHub [Issues](https://github.com/Ory0n/Resource_Monitor/issues) tracker to report issues or ask for features.
55+
Use the GitHub [Issues](https://github.com/0ry0n/Resource_Monitor/issues) tracker to report issues or ask for features.
6656

6757
# Change Log
58+
**version 11 (Apr 1, 2021)**
59+
- Added new better icons.
60+
- Changed the detection of network devices via signals.
61+
- Added disks space monitoring.
62+
- Added the ability to show multiple disks at the same time.
63+
- Added backward compatibility with gnome 3.28, 3.30
64+
- Added the position of icons.
65+
- Added swap monitoring: thanks to @henrique3g
66+
- Removed deprecated functions.
67+
6868
**version 10 (Nov 21, 2020)**
6969
- Ram fix.
7070
- Added show or not Gnome System Monitor when clicking on extension.
@@ -106,7 +106,7 @@ Use the GitHub [Issues](https://github.com/Ory0n/Resource_Monitor/issues) tracke
106106
- Initial release.
107107

108108
# Authors
109-
- **Giuseppe Silvestro** - *Initial work* - [Ory0n](https://github.com/Ory0n)
109+
- **Giuseppe Silvestro** - *Initial work* - [0ry0n](https://github.com/0ry0n)
110110

111111
# License
112-
This project is licensed under the GNU GPL-3.0 License - see the [LICENSE.md](https://github.com/Ory0n/Resource_Monitor/blob/master/LICENSE) file for details.
112+
This project is licensed under the GNU GPL-3.0 License - see the [LICENSE.md](https://github.com/0ry0n/Resource_Monitor/blob/master/LICENSE) file for details.

0 commit comments

Comments
 (0)