Bash colorize tool - Desktop Customization & Workflow
Users browsing this thread: 1 Guest(s)
|
|||
Here's a small program I made to colorize text input such as ascii characters.
The code isn't too great and I'll rewrite it when I have the time but it works(for the most part). Example: Download: https://www.box.com/s/c1732ca82d7b33362796 Install: Installation: make sudo make install make clean Uninstall: make deinstall Full readme file: Quote:COLORIZE |
|||
|
|||
This is a very cool tool! I will have to give it a try.
|
|||
|
|||
Does this work with zsh, or just bash?
|
|||
|
|||
I did not download it yet, but it seems really interesting; normally I have fun using sed to pass through text and insert colors.
I think it uses echo -e "\e[1,32m" so it should work with everything. |
|||
|
|||
(29-08-2012, 02:54 PM)Jayro Wrote: This is a very cool tool! I will have to give it a try. (29-08-2012, 04:30 PM)NeoTerra Wrote: Seconded.Thanks! (30-08-2012, 03:31 AM)gurhush Wrote: Does this work with zsh, or just bash?Should work with zsh since it the program uses escape sequences. (30-08-2012, 04:17 AM)venam Wrote: I did not download it yet, but it seems really interesting; normally I have fun using sed to pass through text and insert colors.That's what I did initially, but when I wanted to fully colorize an ascii image it sometimes took large lines of those escape sequences. Not having to write such a sed command everytime I create something with colors was the main reason I made this one. |
|||