colorls/README.md

38 lines
1.2 KiB
Markdown
Raw Normal View History

2017-06-29 19:02:18 +02:00
# Color LS
A Ruby script that colorizes the `ls` output with format icons. Here are the screenshots of
2017-06-29 19:04:56 +02:00
working example on an iTerm2 terminal (Mac OS), `oh-my-zsh` with `powerlevel9k` theme and `powerline nerd-font + awesome-config` font.
2017-06-29 19:02:18 +02:00
2017-06-30 10:16:38 +02:00
![Example #1](readme/example1.png)
![Example #2](readme/example2.png)
2017-06-29 19:02:18 +02:00
# Making this work on your terminal
1. Install Ruby (prefably, version > 2.1)
2. Install the patched fonts of powerline nerd-font.
3. Clone this repository with `git clone https://github.com/athityakumar/colorls.git`
4. Navigate to this cloned directory : `cd colorls`
5. Install bundler and dependencies :
```
gem install bundler
bundle install
```
6. Add an cli command (say, `colorls` to your shell configuration file (`~/.bashrc` or `~/.zshrc`) :
```
function colorls()
{
ruby /path/to/colorls/colorls.rb $1;
}
```
2017-06-29 19:04:56 +02:00
_Note : I have aliased it to `lc`, as it can be seen from the screenshot._
2017-06-29 19:02:18 +02:00
# Contributing to the repository
Please feel free to contribute to this project, by either
- cleaning up the `colorls.rb` ruby script with more functionalities.
- adding support for more file [formats](formats.yaml) and/or [aliases](aliases.yaml).
# LICENSE
MIT License 2017 - [Athitya Kumar](https://github.com/athityakumar/).