I've migrated to Urxvt.
~/.Xresources
URxvt.background: #000000 !URxvt.background: rgba:0000/0000/0000/dddd URxvt.foreground: #C0C0C0 URxvt.font: xft:Monospace:size=11 URxvt.boldFont: xft:Monospace:bold:size=11 URxvt.scrollstyle: plain URxvt.scrollBar: false URxvt.saveLines: 1000 URxvt.termName: rxvt URxvt.pointerBlank: true URxvt.perl-ext-common: default,matcher URxvt.urlLauncher: /usr/bin/firefox URxvt.matcher.button: 1 !black URxvt.color0: #000000 URxvt.color8: #555555 !red URxvt.color1: #AA0000 URxvt.color9: #FF5555 !green URxvt.color2: #00AA00 URxvt.color10: #55FF55 !yellow URxvt.color3: #AA5500 URxvt.color11: #FFFF55 !blue URxvt.color4: #0000AA URxvt.color12: #5555FF !magenta URxvt.color5: #AA00AA URxvt.color13: #FF55FF !cyan URxvt.color6: #00AAAA URxvt.color14: #55FFFF !white URxvt.color7: #C0C0C0 URxvt.color15: #FFFFFF Xft.dpi: 102 Xft.antialias: true Xft.hinting: true Xft.hintstyle: hintslight Xft.rgba: rgb
colors.sh
#!/bin/sh echo -e "\\e[0mCOLOR_NC (No color)" echo -e "\\e[1;37mCOLOR_WHITE\\t\\e[0;30mCOLOR_BLACK" echo -e "\\e[0;34mCOLOR_BLUE\\t\\e[1;34mCOLOR_LIGHT_BLUE" echo -e "\\e[0;32mCOLOR_GREEN\\t\\e[1;32mCOLOR_LIGHT_GREEN" echo -e "\\e[0;36mCOLOR_CYAN\\t\\e[1;36mCOLOR_LIGHT_CYAN" echo -e "\\e[0;31mCOLOR_RED\\t\\e[1;31mCOLOR_LIGHT_RED" echo -e "\\e[0;35mCOLOR_PURPLE\\t\\e[1;35mCOLOR_LIGHT_PURPLE" echo -e "\\e[0;33mCOLOR_YELLOW\\t\\e[1;33mCOLOR_LIGHT_YELLOW" echo -e "\\e[1;30mCOLOR_GRAY\\t\\e[0;37mCOLOR_LIGHT_GRAY"See also: nice collection of color schemes.
No comments :
Post a Comment