dotfiles

*nix config files
git clone git://git.pyratebeard.net/dotfiles.git
Log | Files | Refs | README

venganza.zsh (664B)


      1 # VENGANZA
      2 # tty colors
      3 if [ "$TERM" = "linux" ]
      4 then
      5     echo -en "\e]P0212121" #black
      6     echo -en "\e]P83e3c3a" #darkgrey
      7     echo -en "\e]P1c73d2f" #darkred
      8     echo -en "\e]P9923a45" #red
      9     echo -en "\e]P21dc189" #darkgreen
     10     echo -en "\e]PA2a936b" #green
     11     echo -en "\e]P3a0ac6b" #yellow
     12     echo -en "\e]PB997358" #orange
     13     echo -en "\e]P43a7885" #darkblue
     14     echo -en "\e]PC366696" #blue
     15     echo -en "\e]P5776e89" #darkmagenta
     16     echo -en "\e]PD4f5090" #magenta
     17     echo -en "\e]P635abbb" #darkcyan
     18     echo -en "\e]PE5a7588" #cyan
     19     echo -en "\e]P7e6e3c6" #lightgrey
     20     echo -en "\e]PFeeeeec" #white
     21     clear #for background artifacting
     22 fi