-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathusage.txt
54 lines (35 loc) · 1.52 KB
/
usage.txt
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
.__ __
____ __ __|__|/ |______ _______ ______
/ ___\| | \ \ __\__ \\_ __ \/ ___/
/ /_/ > | / || | / __ \| | \/\___ \
\___ /|____/|__||__| (____ /__| /____ >
/_____/ \/ \/
Guitar Scales.
Show the positions of a scale at a given root note on the guitar.
USAGE:
$ guitars [options] <scale> <root>
Where <scale> is one of:
- major/ioninan The major scale or ionian mode
- nminor/aeolian The natural minor scale or aeolian mode
- hminor The harmonic minor scale
- mminor The melodic minor scale
- phrygian/phr The phrygian mode
- lydian/lyd The lydian mode
- mixolydian/myx The mixolidian mode
- locrian/loc The locrian mode
- minpenta The minor pentatonic scale
- majpenta The major pentatonic scale
And <root> can be any root note: A, Asharp, Bflat, B, C, Csharp ...
Note that only the first two letters of the note need to be defined for
sharp or flat notes (e.g. As, Bf).
OPTIONS:
--help Prints the help menu and exits
--frets Then number of frets to show in the diagram (default 17)
EXAMPLES:
$ guitars major A
$ guitars ioninan A
Prints the positions of the Major/Ionian scale with the root in A.
$ guitars --frets 21 phr fsharp
Prints the positions of the Phrygian mode in a fretboard with 21 frets.
AUTHOR:
Written by Angel Sola Orbaiceta <https://github.com/angelsolaorbaiceta>.