Created
May 19, 2011 23:37
-
-
Save zoranzaric/982031 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
!#include "/home/zz/.xrdb/look-zenburn.xrdb" | |
!#include "/home/zz/.xrdb/bl1nkwhite.xrdb" | |
#include "/home/zz/.xrdb/bl1nk.xrdb" | |
!#include "/home/zz/.xrdb/solarized.xrdb" | |
! | |
xft.antialias: true | |
xft.hinting: true | |
URxvt*scrollBar: false | |
!URxvt*foreground: #e8e8d3 | |
URxvt*foreground: COLOR_FG | |
!URxvt*background: #151515 | |
URxvt*background: COLOR_BG | |
URxvt*cursorColor: COLOR_FG | |
URxvt*cursorBlink: false | |
URxvt.font: xft:EnvyCodeR:size=10 | |
URxvt.boldFont: xft:EnvyCodeR:size=10:style=Bold | |
! URxvt.font: xft:Terminus:size=10:antialias=false:hinting=false,\ | |
! [codeset=JISX0208]xft:Kochi Gothic:antialias=false,\ | |
! xft:Code 2000:antialias=false | |
! | |
! URxvt.boldFont: xft:Terminus:size=10:style=Bold:antialias=false:hinting=false,\ | |
! [codeset=JISX0208]xft:Kochi Gothic:antialias=false,\ | |
! xft:Code 2000:antialias=false:style=Bold | |
TERM=rxvt-256color | |
URxvt.perl-ext-common: default,selection,matcher,searchable-scrollback<M-s>/ | |
/* default: load default perl extensions | |
* selection: intelligent selection (words, urls) | |
* matcher: underlines matched text and executes program upon click | |
* searchable-scro...: adds regex search to scrollback buffer */ | |
URxvt.termName: rxvt-256color | |
URxvt*matcher.button: 1 | |
URxvt*urlLauncher: jumanji | |
URxvt*visualbell: true | |
Xcursor.theme:Vanilla-DMZ-AA | |
/* | |
* default terminal colors | |
* | |
* 0-7 low-intensity | |
* 8-15 high-intensity */ | |
! black | |
!*color0: #2e3436 | |
!*color8: #555753 | |
*color0: COLOR_TERM_BLACK | |
*color8: COLOR_TERM_DARK_GRAY | |
! red | |
!*color1: #cc0000 | |
!*color9: #ef2929 | |
*color1: COLOR_TERM_DARK_RED | |
*color9: COLOR_TERM_LIGHT_RED | |
! green | |
!*color2: #00ff00 | |
!*color10: #66ff66 | |
*color2: COLOR_TERM_DARK_GREEN | |
*color10: COLOR_TERM_LIGHT_GREEN | |
! yellow | |
!*color3: #c4a000 | |
!*color11: #fc394f | |
*color3: COLOR_TERM_DARK_YELLOW | |
*color11: COLOR_TERM_LIGHT_YELLOW | |
! blue | |
!*color4: #3456a4 | |
!*color12: #729fcf | |
*color4: COLOR_TERM_DARK_BLUE | |
*color12: COLOR_TERM_LIGHT_BLUE | |
! magenta | |
!*color5: #75507b | |
!*color13: #ad7fa8 | |
*color5: COLOR_TERM_DARK_MAGENTA | |
*color13: COLOR_TERM_LIGHT_MAGENTA | |
! orange (default cyan) | |
!*color6: #418179 | |
!*color14: #34e2e2 | |
*color6: COLOR_TERM_DARK_CYAN | |
*color14: COLOR_TERM_LIGHT_CYAN | |
! white | |
!*color7: #d3d7cf | |
!*color15: #eeeeec | |
*color7: COLOR_TERM_DARK_GRAY | |
*color15: COLOR_TERM_WHITE | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define COLOR_FG #c0c0c0 | |
#define COLOR_BG #121212 | |
#define COLOR_TERM_BLACK #1B1D1E | |
#define COLOR_TERM_DARK_RED #F92672 | |
#define COLOR_TERM_DARK_GREEN #82B414 | |
#define COLOR_TERM_DARK_YELLOW #FD971F | |
#define COLOR_TERM_DARK_BLUE #56C2D6 | |
#define COLOR_TERM_DARK_MAGENTA #8C54FE | |
#define COLOR_TERM_DARK_CYAN #465457 | |
#define COLOR_TERM_LIGHT_GRAY #CCCCC6 | |
#define COLOR_TERM_DARK_GRAY #505354 | |
#define COLOR_TERM_LIGHT_RED #FF5995 | |
#define COLOR_TERM_LIGHT_GREEN #B6E354 | |
#define COLOR_TERM_LIGHT_YELLOW #FEED6C | |
#define COLOR_TERM_LIGHT_BLUE #8CEDFF | |
#define COLOR_TERM_LIGHT_MAGENTA #9E6FFE | |
#define COLOR_TERM_LIGHT_CYAN #899CA1 | |
#define COLOR_TERM_WHITE #F8F8F2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment