blob: e58d2ccd7ae8cad1432dc8072e030448ea68d0f8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# Git Sonar
A heads up display for git. Fork of 'git-radar' by Michael Allen (https://github.com/michaeldfallen/git-radar).
![An example of git-sonar]
## Installation
For a normal installation, run 'make install' (may require sudo), but see the
output from 'make' for more installation options. Run 'git-sonar -h' to confirm
the install is successful.
## Support
### Colour Codes
Colour codes make use of the colours your terminal app claims to be `red`
or `green`. Using one of these codes will only produce the colour your terminal
claims, so you should customise your colour scheme on your terminal as well as
customising git-sonar.
Note the "Bright" colours can be shown as bold instead, it depends on your
terminal. By default, for example, the Mac OSX Terminal.app uses the "Bright"
colours to provide 8 new lighter colours but some terminals only support 8 and
will show the text as bold instead.
Colour | Code for Text | Code for Background
--------------|----------------|--------------------
Black | `\\033[0;30m` | `\\033[0;40m`
Red | `\\033[0;31m` | `\\033[0;41m`
Green | `\\033[0;32m` | `\\033[0;42m`
Yellow | `\\033[0;33m` | `\\033[0;43m`
Blue | `\\033[0;34m` | `\\033[0;44m`
Magenta | `\\033[0;35m` | `\\033[0;45m`
Cyan | `\\033[0;36m` | `\\033[0;46m`
White | `\\033[0;37m` | `\\033[0;47m`
Bright Black | `\\033[1;30m` | `\\033[1;40m`
Bright Red | `\\033[1;31m` | `\\033[1;41m`
Bright Green | `\\033[1;32m` | `\\033[1;42m`
Bright Yellow | `\\033[1;33m` | `\\033[1;43m`
Bright Blue | `\\033[1;34m` | `\\033[1;44m`
Bright Magenta| `\\033[1;35m` | `\\033[1;45m`
Bright Cyan | `\\033[1;36m` | `\\033[1;46m`
Bright White | `\\033[1;37m` | `\\033[1;47m`
Reset | `\\033[0m` | `\\033[0m`
Note the Reset will set back to what your terminal claims as standard text and
background.
## License
Git Radar and Git Sonar are licensed under the MIT license.
See [LICENSE] for the full license text.
## Links
* [mini-git-radar](https://github.com/bogem/mini-git-radar) - lightweight version of git-radar. Only for macOS and bash/fish.
|