From: Samir Benmendil Date: Thu, 4 Jul 2013 16:57:36 +0000 (+0200) Subject: more urxvt stuff X-Git-Url: https://git.rmz.io/dotfiles.git/commitdiff_plain/b28685bc89508341cb0574287d150e6d66fa72ae more urxvt stuff * set title * some reordering * no iso14755 (utf8 hex) * clickable urls * clipboard support --- diff --git a/Xresources b/Xresources index 29324ab..f0dc65c 100644 --- a/Xresources +++ b/Xresources @@ -1,33 +1,72 @@ +! {{{ Title +URxvt*title: urxvt +URxvt*termName: rxvt-256color +URxvt*urgentOnBell: true +URxvt*iconFile: /usr/share/icons/hicolor/scalable/apps/yakuake.svgz +! }}} + +! {{{ Font +URxvt.font: xft:Inconsolata-g:size=11 +URxvt.skipBuiltinGlyphs: true +Urxvt.xftAntialias: true +! }}} + +! {{{ Scrolling URxvt*.scrollBar: false -URxvt.font: xft:Inconsolata-g:size=11 -URxvt.saveLines: 10000 +URxvt.saveLines: 10000 +URxvt.scrollTtyOutput: false +URxvt.scrollTtyKeypress: true +URxvt.scrollWithBuffer: true +! }}} + +! disable Ctrl+Shift UTF8 hex +URxvt.iso14755: false +URxvt.iso14755_52: false + +! {{{ Perl extensions +URxvt.perl-ext-common: default,matcher,clipboard +! {{{ matcher +URxvt.url-launcher: mimeo +URxvt.matcher.button: 1 + +URxvt.keysym.4-r: perl:matcher:last +URxvt.keysym.4-Delete: perl:matcher:list +! }}} +! {{{ clipboard +URxvt.keysym.C-C: perl:clipboard:copy +URxvt.keysym.C-V: perl:clipboard:paste +URxvt.keysym.C-A-V: perl:clipboard:paste_escaped +! }}} +! }}} +! {{{ Colours URxvt*.depth: 32 -*background: [75]#222222 -*foreground: #f8f8f2 +*background: [75]#222222 +*foreground: #f8f8f2 ! Black -*color0: #262729 -*color8: #262729 +*color0: #262729 +*color8: #262729 ! Red -*color1: #f92671 -*color9: #ff669d +*color1: #f92671 +*color9: #ff669d ! Green -*color2: #a6e22e -*color10: #beed5f +*color2: #a6e22e +*color10: #beed5f ! Yellow -*color3: #fd971f -*color11: #e6db74 +*color3: #fd971f +*color11: #e6db74 ! Blue -*color4: #1692d0 -*color12: #66d9ef +*color4: #1692d0 +*color12: #66d9ef ! Magenta -*color5: #9e6ffe -*color13: #df92f6 +*color5: #9e6ffe +*color13: #df92f6 ! Cyan -*color6: #5e7175 -*color14: #a3babf +*color6: #5e7175 +*color14: #a3babf ! White -*color7: #ffffff -*color15: #ffffff +*color7: #ffffff +*color15: #ffffff ! Cursor -*cursorColor: #b5d2dd +*cursorColor: #b5d2dd +! }}}