diff options
author | Patrick Simianer <p@simianer.de> | 2014-06-13 11:08:56 +0200 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2014-06-13 11:08:56 +0200 |
commit | 3eec877c1a096a1efcd3e20e1b72aa254f96758c (patch) | |
tree | 82c705feaa08dea25872b68dc3aec61fa7ea647b /.Xdefaults |
init
Diffstat (limited to '.Xdefaults')
-rw-r--r-- | .Xdefaults | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/.Xdefaults b/.Xdefaults new file mode 100644 index 0000000..4bec5f8 --- /dev/null +++ b/.Xdefaults @@ -0,0 +1,67 @@ +URxvt*termName: rxvt +URxvt.perl-lib: /home/pks/.urxvt/ +URxvt.perl-ext-common: default,tabbedex,url-select,clipboard,keyboard-select + +/* keyboard (M is alt) */ +URxvt.keysym.M-Escape: perl:keyboard-select:activate +URxvt.keysym.M-s: perl:keyboard-select:search +URxvt.keysym.M-u: perl:url-select:select_next +URxvt.keysym.M-c: perl:clipboard:copy +URxvt.keysym.M-v: perl:clipboard:paste +URxvt.keysym.M-C-v: perl:clipboard:paste_escaped + +/* borderless and no scrollbar */ +URxvt*scrollBar: false +URxvt*scrollBar_right: false +URxvt*borderLess: false +URxvt.cursorBlink: true +URxvt*internalBorder: 0 + +/* fonts */ +URxvt*font: xft:MonteCarlo:pixelsize=11:style=regular:antialias=false +URxvt*boldFont: xft:MonteCarlo:pixelsize=11:style=bold:antialias=false + +/* change default colors */ +URxvt*background: #000000 +URxvt*foreground: #999999 +! black +URxvt*.color0 : #000000 +URxvt*.color8 : #999999 +! red +URxvt*.color1 : #bb4444 +URxvt*.color9 : #bb4444 +! green +URxvt*.color2 : #44bb44 +URxvt*.color10 : #44bb44 +! yellow +URxvt*.color3 : #bbbb44 +URxvt*.color11 : #bbbb44 +! blue +URxvt*.color4 : #4444aa +URxvt*.color12 : #4444aa +! magenta +URxvt*.color5 : #bb44bb +URxvt*.color13 : #bb44bb +! cyan +URxvt*.color6 : #44bbbb +URxvt*.color14 : #44bbbb +! white +URxvt*.color7 : #999999 +URxvt*.color15 : #999999 + +/* tabbed */ +URxvt.tabbed.tabbar-fg: 7 +URxvt.tabbed.tabbar-bg: 0 +URxvt.tabbed.tab-fg: 5 +URxvt.tabbed.tab-bg: 0 +URxvt.tabbed.title-fg: 0 +URxvt.tabbed.title-bg: 7 +URxvt.tabbed.new-button: no +URxvt.tabbed.title: yes + +/* url-select */ +URxvt.url-select.autocopy: false +URxvt.url-select.button: 1 +URxvt.url-select.launcher: chromium +URxvt.url-select.underline: true + |