Chapter 11: LS Colors





Customize LS Colors:

 LS Colors define which colors to use for a given filetype by ls
 Use the Comboboxes to adjust the color for common filetypes

Custom:

 Change the LS Colors for anything not mentioned in the UI
 Syntax: * File = color :
 Example: *README=01;31: -> will result in README files beeing red
 How to get color codes: echo -E ${color}
 Example: echo -E ${iceblue} -> \[\033[01;38;5;45m\]
 Simply extract the part after the second [ and before the m
 In this example: 01;38;5;45
 So to make Makefile iceblue: *Makefile=01;38;5;45:
 Run bs-ng-echo --help to check colors provided by BashStyle-NG