Skip to content

Commit 2a2f8ea

Browse files
committed
changed user section and added features in readme
1 parent f14e082 commit 2a2f8ea

File tree

2 files changed

+29
-8
lines changed

2 files changed

+29
-8
lines changed

README.md

Lines changed: 25 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,32 @@
11
# Sysglance
22

3-
43
Syglance is a simple and universal, Linux utility for generating a report for the host system
54
![Screenshot](assets/sysglance-screenshot.png?raw=true "Parcial Screenshot")
5+
6+
# Features
7+
8+
Sysglance will generate a report about:
9+
10+
- Host information
11+
- System uptime and load in 1, 5 and 15 minutes span
12+
- Available User Accounts
13+
- Currently logged in users
14+
- CPU, GPU, USB, Network adapters
15+
- File system partitions and disk space usage
16+
- Free and used memory in the system
17+
- Top 10 processes as far as memory usage is concerned including user, pid and when it started
18+
- Show per Network device, Public and Private IP addresses
19+
- List of Processes and open Networking Ports
20+
- List of Errors/Alerts in log files since the last system boot
21+
22+
623
## Installation
724

825
[![Build Status](https://travis-ci.org/Utappia/sysglance.svg?branch=master)](https://travis-ci.org/Utappia/sysglance)
926

10-
Sysglance is packaged as AppImage using Travic CI in continuous maner. You can download the latest version from [Releases](https://github.com/Utappia/sysglance/releases/tag/continuous) by clicking on **Assets** and the **Sysglance*.AppImage** file.
27+
Sysglance is packaged as AppImage using Travic CI in continuous maner.
28+
29+
You can download the latest version from [Releases](https://github.com/Utappia/sysglance/releases/tag/continuous) by clicking on **Assets** and the **Sysglance*.AppImage** file.
1130

1231
Or you can do it from terminal:
1332

@@ -16,6 +35,7 @@ wget https://github.com/Utappia/sysglance/releases/download/continuous/Sysglance
1635
```
1736
Once downloaded you have to give the Sysglance package, executable permitions.
1837
e.g.:
38+
1939
```bash
2040
chmod +x Sysglance*.AppImage
2141
```
@@ -41,9 +61,10 @@ To get notified for new releases, you just need to click on Watch --> Releases O
4161

4262

4363
## Contributing
44-
### Code
45-
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
64+
### Code - Bug reports
65+
Pull requests are welcome. For major changes, please [open an issue](https://github.com/Utappia/sysglance/issues) first to discuss what you would like to change.
4666
Please make sure test your pull requests as appropriate.
67+
4768
### Donation
4869
You can also contribute by clicking on the **Sponsor** button
4970

sysglance.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ echo ""
4646
echo "$(tput bold)Uptime and system load:$(tput sgr0)"
4747
uptime
4848
echo ""
49-
# Currently logged in users:
50-
echo "$(tput bold)Logged in users:$(tput sgr0)"
51-
who
52-
echo ""
5349
# Users available:
5450
echo "$(tput bold)Available User Accounts:$(tput sgr0)"
5551
lslogins -u
52+
echo ""
53+
# Currently logged in users:
54+
echo "$(tput bold)Logged in users:$(tput sgr0)"
55+
who
5656
sleep 1
5757
echo ""
5858
#----------------------------------------------------------

0 commit comments

Comments
 (0)