Colorer is a simple command line utility useful to add color to commands that do not have it by default. It works with Linux as well as MacOS.
Not all commands are supported yet. If you implement a parser for a command or find an error please submit a merge request :).
Supported commands:
- df
- dig
- docker
(still WIP)
- free
- last
and lastb
- ls
- nmap
- nslookup
- ping
While most commands can be easily aliased, some may misbehave. An example is given by ls
, which is implemented by taking into account the -l
(list) flag.
Copy and paste the following block in you dotfile configuration.
text
alias df="clrr df"
alias dig="clrr dig"
alias docker="clrr docker"
alias free="clrr free"
alias last="clrr last"
alias lastb="clrr lastb"
alias ll="clrr ls -lahF"
alias nmap="clrr nmap"
alias nslookup="clrr nslookup"
alias ping="clrr ping"