-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from andresgongora/develop
Develop
- Loading branch information
Showing
20 changed files
with
2,779 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "bash-tools"] | ||
path = bash-tools | ||
url = https://github.com/andresgongora/bash-tools.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<!--------------------------------------+--------------------------------------> | ||
## ABOUT | ||
<!--------------------------------------+--------------------------------------> | ||
|
||
This file contains the list of people involved in the development of these | ||
scripts, which started as just a bunch of loose file that I kept around | ||
for convenience, and most often than not, just for fun :) | ||
|
||
If you feel someone is missing, please fork and pull-request. | ||
You may add your name, email, a link to your personal web-site/blog/profile | ||
(no commercial links) and a brief contribution summary. | ||
|
||
<!-- The following list is roughly sorted in reverse cronological order. --> | ||
|
||
|
||
|
||
|
||
|
||
|
||
<!--------------------------------------+--------------------------------------> | ||
## DEVELOPERS & CONTRIBUTORS | ||
<!--------------------------------------+--------------------------------------> | ||
|
||
* **Andres Gongora** | ||
<mail@andresgongora.com> | ||
www.andresgongora.com | ||
Main developer | ||
|
||
|
||
* **Sami Olmari** | ||
<sami@olmari.fi> | ||
www.olmari.fi | ||
2019 - Major improvements to `status.sh` | ||
|
||
|
||
* **PeterJRiches** | ||
2019 - Proofreading of comments and explanation fixes | ||
|
||
|
||
|
||
|
||
|
||
|
||
<!--------------------------------------+--------------------------------------> | ||
## OTHERS | ||
<!--------------------------------------+--------------------------------------> | ||
|
||
Bug reports and new feature suggestions, provideded by users world-wide, | ||
are usually mentioned in the [changelogs](doc/changelog.md). | ||
|
||
We kindly thank all of them for their valuable feedback. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,170 @@ | ||
![synth-shell](doc/synth-shell-status.jpg) | ||
|
||
|
||
**synth-shell-status** shows a summary of your system's current health. | ||
- Automatically printed in new terminal sessions (local, SSH, ...). | ||
- Monitor your servers, RaspberryPis, and workstations. All system info you | ||
need at a glance (e.g. external IP address, CPU temperature, etc.). | ||
- Detect broken services or CPU hogs. | ||
- Print your own ASCII logo every time you log in. | ||
|
||
|
||
|
||
<br/><br/> | ||
|
||
|
||
|
||
<!--------------------------------------+--------------------------------------> | ||
# Setup | ||
<!--------------------------------------+--------------------------------------> | ||
|
||
### Automatic setup | ||
|
||
The included [setup script](setup.sh) will guide you step by step through the | ||
process and let you choose what features to install. During this setup, you can | ||
choose to install synth-shell for your user only (recommended) or system-wide | ||
(superuser privileges required). To proceed, | ||
[open and play this link in a separate tab](https://www.youtube.com/embed/MpN91wHAr1k) | ||
and enter the following into your terminal: | ||
``` | ||
git clone --recursive https://github.com/andresgongora/synth-shell.git | ||
chmod +x synth-shell/setup.sh | ||
synth-shell/setup.sh | ||
``` | ||
|
||
Note that for `fancy-bash-prompt.sh` you might also need | ||
[power-line fonts](https://github.com/powerline/fonts). You can instal it | ||
as follows (the exact name of the package varies from distro to distro): | ||
|
||
* ArchLinux: `sudo pacman -S powerline-fonts` | ||
* Debian/Ubuntu: `sudo apt install fonts-powerline` | ||
|
||
Finally, open up a new terminal and test that everything works. Sometimes, | ||
despite power-line fonts being properly installed, the triangle separator | ||
for `fancy-bash-prompt.sh` (if installed) might still not show. In this case, | ||
make sure that your `locale` is set to UTF-8 by editing `/etc/locale.conf` file | ||
(select your language but in UTF-8 format) and running `sudo locale-gen`. | ||
[More info on locale](https://wiki.archlinux.org/index.php/locale). | ||
Alternatively, try a different font in your terminal emulator. Some fonts | ||
do not support special characters. We get the best results with | ||
[hack-ttf](https://sourcefoundry.org/hack/). | ||
|
||
|
||
|
||
### Configuration/customization | ||
You can configure your scripts by modifying the corresponding configuration | ||
files. You can find them, along example configuration files, in the following | ||
folders depending on how you installed **synth-shell**: | ||
|
||
* Current-user only: `~/.config/synth-shell/` | ||
* System wide: `/etc/synth-shell/` | ||
|
||
|
||
|
||
### Uninstallation | ||
Run the setup script again (like during the installation), but choose | ||
`uninstall` when prompted. | ||
|
||
|
||
|
||
<br/><br/> | ||
|
||
|
||
|
||
<!--------------------------------------+--------------------------------------> | ||
# Overview | ||
<!--------------------------------------+--------------------------------------> | ||
|
||
`status.sh` provides a summarized system report at a single glance every time | ||
you open up a new terminal. If it detects that any system parameter | ||
(e.g. CPU load, memory, etc.) is over a critical threshold, it will provide a | ||
warning and additional information about the cause. Last but not least, it | ||
prints a user-configurable ASCII logo to impress your crush from the library | ||
with how awesome you are. | ||
|
||
Feel free to customize your status report through the many available options | ||
in `~/.config/synth-shell/status.config` (user-only install) or | ||
`/etc/synth-shell/status.config` (system-wide install),or by replacing their | ||
content with the examples files you can find under the same directory. | ||
|
||
![status configuration options](doc/status_config_preview.png) | ||
|
||
|
||
|
||
<br/><br/> | ||
|
||
|
||
|
||
<!--------------------------------------+--------------------------------------> | ||
# Contribute | ||
<!--------------------------------------+--------------------------------------> | ||
|
||
This project is only possible thanks to the effort and passion of many, | ||
including developers, testers, and of course, our beloved coffee machine. | ||
You can find a detailed list of everyone involved in the development | ||
in [AUTHORS.md](AUTHORS.md). Thanks to all of you! | ||
|
||
If you like this project and want to contribute, you are most welcome to do so. | ||
|
||
|
||
|
||
### Help us improve | ||
|
||
* [Report a bug](https://github.com/andresgongora/synth-shell/issues/new/choose): | ||
if you notice that something is not right, tell us. We'll try to fix it ASAP. | ||
* Suggest an idea you would like to see in the next release: send us | ||
and email or open an [issue](https://github.com/andresgongora/synth-shell/issues)! | ||
* Become a developer: fork this repo and become an active developer! | ||
Take a look at the [issues](https://github.com/andresgongora/synth-shell/issues) | ||
for suggestions of where to start. Also, take a look at our | ||
[coding style](coding_style.md). | ||
* Spread the word: telling your friends is the fastes way to get this code to | ||
the people who might enjoy it! | ||
|
||
|
||
|
||
### Git branches | ||
|
||
There are two branches in this repository: | ||
|
||
* **master**: this is the main branch, and thus contains fully functional | ||
scripts. When you want to use the scripts as a _user_, | ||
this is the branch you want to clone or download. | ||
* **develop**: this branch contains all the new features and most recent | ||
contributions. It is always _stable_, in the sense that you can use it | ||
without major inconveniences. | ||
However, it's very prone to undetected bugs and it might be subject to major | ||
unannounced changes. If you want to contribute, this is the branch | ||
you should pull-request to. | ||
|
||
|
||
|
||
<br/><br/> | ||
|
||
|
||
|
||
<!--------------------------------------+--------------------------------------> | ||
# About | ||
<!--------------------------------------+--------------------------------------> | ||
|
||
**synth-shell-status** is part of | ||
[synth-shell](https://github.com/andresgongora/synth-shell) | ||
|
||
|
||
|
||
<br/><br/> | ||
|
||
|
||
|
||
<!--------------------------------------+--------------------------------------> | ||
# License | ||
<!--------------------------------------+--------------------------------------> | ||
|
||
Copyright (c) 2014-2020, Andres Gongora - www.andresgongora.com | ||
|
||
* This software is released under a GPLv3 license. | ||
Read [license-GPLv3.txt](LICENSE), | ||
or if not present, <http://www.gnu.org/licenses/>. | ||
* If you need a closed-source version of this software | ||
for commercial purposes, please contact the [authors](AUTHORS.md). | ||
|
Submodule bash-tools
added at
4c6d5d
43 changes: 43 additions & 0 deletions
43
config/examples/synth-shell-greeter.org.uma.mapir.cyan.config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
##============================================================================== | ||
## LOGO | ||
## | ||
## Configure the logo to you liking. You can either use the default or | ||
## set your own ASCII art down below. | ||
## | ||
## - You can either add it as a single line, or multiline (terminated with \). | ||
## - You have to escape backslashes if you want them to show inside your logo. | ||
## Use \\\\ for 1 backslash, \\\\\\\\ for two. All other characters work fine. | ||
## - You can also add individual color codes to the logo using '\e[ ··· m'. | ||
## - For example: \e[1;31mHello World! prints in bright red. | ||
##============================================================================== | ||
|
||
## MAPIR (UMA) Robotics Research Group | ||
logo=" | ||
__ __ _ ___ ___ ___ | ||
| \\/ | /_\\ | _ \\_ _| _ \\ | ||
| |\\/| |/ _ \\| _/| || / | ||
|_| |_/_/ \\_\\_| |___|_|_\\ | ||
|
||
MACHINE PERCEPTION AND | ||
INTELLIGENT ROBOTICS | ||
mapir.uma.es | ||
" | ||
|
||
|
||
|
||
##============================================================================== | ||
## COLORS | ||
## | ||
## Control the color and format scheme of the status report. | ||
## -c color: color name or 256bit color code | ||
## -b background ground color: color name or 256bit color code | ||
## -e effect: bold, blink, dim, underline... | ||
##============================================================================== | ||
|
||
format_info=" -c white" | ||
format_highlight=" -c cyan -e bold" | ||
format_crit=" -c 208 -e bold" | ||
format_deco=" -c white -e bold" | ||
format_ok=" -c cyan -e bold" | ||
format_error=" -c 208 -e bold -e blink" | ||
format_logo=" -c cyan -e bold" |
43 changes: 43 additions & 0 deletions
43
config/examples/synth-shell-greeter.org.uma.mapir.gray.config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
##============================================================================== | ||
## LOGO | ||
## | ||
## Configure the logo to you liking. You can either use the default or | ||
## set your own ASCII art down below. | ||
## | ||
## - You can either add it as a single line, or multiline (terminated with \). | ||
## - You have to escape backslashes if you want them to show inside your logo. | ||
## Use \\\\ for 1 backslash, \\\\\\\\ for two. All other characters work fine. | ||
## - You can also add individual color codes to the logo using '\e[ ··· m'. | ||
## - For example: \e[1;31mHello World! prints in bright red. | ||
##============================================================================== | ||
|
||
## MAPIR (UMA) Robotics Research Group | ||
logo=" | ||
__ __ _ ___ ___ ___ | ||
| \\/ | /_\\ | _ \\_ _| _ \\ | ||
| |\\/| |/ _ \\| _/| || / | ||
|_| |_/_/ \\_\\_| |___|_|_\\ | ||
|
||
MACHINE PERCEPTION AND | ||
INTELLIGENT ROBOTICS | ||
mapir.uma.es | ||
" | ||
|
||
|
||
|
||
##============================================================================== | ||
## COLORS | ||
## | ||
## Control the color and format scheme of the status report. | ||
## -c color: color name or 256bit color code | ||
## -b background ground color: color name or 256bit color code | ||
## -e effect: bold, blink, dim, underline... | ||
##============================================================================== | ||
|
||
format_info=" -c white" | ||
format_highlight=" -c light-gray -e bold" | ||
format_crit=" -c 208 -e bold" | ||
format_deco=" -c white -e bold" | ||
format_ok=" -c light-gray -e bold" | ||
format_error=" -c 208 -e bold -e blink" | ||
format_logo=" -c light-gray -e bold" |
43 changes: 43 additions & 0 deletions
43
config/examples/synth-shell-greeter.org.uma.mapir.green.config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
##============================================================================== | ||
## LOGO | ||
## | ||
## Configure the logo to you liking. You can either use the default or | ||
## set your own ASCII art down below. | ||
## | ||
## - You can either add it as a single line, or multiline (terminated with \). | ||
## - You have to escape backslashes if you want them to show inside your logo. | ||
## Use \\\\ for 1 backslash, \\\\\\\\ for two. All other characters work fine. | ||
## - You can also add individual color codes to the logo using '\e[ ··· m'. | ||
## - For example: \e[1;31mHello World! prints in bright red. | ||
##============================================================================== | ||
|
||
## MAPIR (UMA) Robotics Research Group | ||
logo=" | ||
__ __ _ ___ ___ ___ | ||
| \\/ | /_\\ | _ \\_ _| _ \\ | ||
| |\\/| |/ _ \\| _/| || / | ||
|_| |_/_/ \\_\\_| |___|_|_\\ | ||
|
||
MACHINE PERCEPTION AND | ||
INTELLIGENT ROBOTICS | ||
mapir.uma.es | ||
" | ||
|
||
|
||
|
||
##============================================================================== | ||
## COLORS | ||
## | ||
## Control the color and format scheme of the status report. | ||
## -c color: color name or 256bit color code | ||
## -b background ground color: color name or 256bit color code | ||
## -e effect: bold, blink, dim, underline... | ||
##============================================================================== | ||
|
||
format_info=" -c white" | ||
format_highlight=" -c green -e bold" | ||
format_crit=" -c 208 -e bold" | ||
format_deco=" -c white -e bold" | ||
format_ok=" -c green -e bold" | ||
format_error=" -c 208 -e bold -e blink" | ||
format_logo=" -c green -e bold" |
Oops, something went wrong.